19 lines
457 B
C#
19 lines
457 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace RuleEngine.Models
|
|
{
|
|
public partial class Camera
|
|
{
|
|
public int Id { get; set; }
|
|
public int? CamNo { get; set; }
|
|
public string CamImgPath { get; set; }
|
|
public DateTime? ReceivedTime { get; set; }
|
|
public DateTime? DeviceTime { get; set; }
|
|
public int? CarId { get; set; }
|
|
public int? DeviceDate { get; set; }
|
|
}
|
|
}
|