26 lines
722 B
C#
26 lines
722 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|