CarTrackingRuleEngine/RuleEngine/Models/Device.cs

26 lines
722 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 Device
{
public int Id { get; set; }
public string DeviceNumber { get; set; }
public string Imei { get; set; }
public string Phone { get; set; }
public int CarrierId { get; set; }
public DateTime? ActivationTime { get; set; }
public bool? IsActive { get; set; }
public bool? AllowUpdate { get; set; }
public int? UnitId { get; set; }
public int? CarId { get; set; }
public int? FanStatus { get; set; }
public string ServerUrl { get; set; }
// public virtual Car Car { get; set; }
}
}