CarTrackingRuleEngine/RuleEngine/Models/Camera.cs

19 lines
457 B
C#
Raw Normal View History

2025-05-15 10:01:56 +07:00
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; }
}
}