CarTrackingRuleEngine/RuleEngine/Models/DailyKmCar.cs

24 lines
595 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace RuleEngine.Models
{
public partial class DailyKmCar
{
public int Id { get; set; }
public string Driver { get; set; }
public string Treasure { get; set; }
public double? TotalKm { get; set; }
public DateTime? ReportTime { get; set; }
public string UnitName { get; set; }
public string CarLicensePlate { get; set; }
public int? UnitId { get; set; }
public int? CarId { get; set; }
public virtual Car Car { get; set; }
}
}