using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace Traffic.Data.ViewModels { public class EventCountViewModel { /// /// 流水號 /// [JsonPropertyName("TotalCount")] public int TotalCount { get; set; } /// /// 確認開單 /// [JsonPropertyName("PunishedCount")] public int PunishedCount { get; set; } /// /// 待確認開單 /// [JsonPropertyName("CheckPunishedCount")] public int CheckPunishedCount { get; set; } /// /// IsStayCount /// [JsonPropertyName("IsStayCount")] public int IsStayCount { get; set; } /// /// UnsureCount /// [JsonPropertyName("UnsureCount")] public int UnsureCount { get; set; } /// /// 駁回 /// [JsonPropertyName("RejectedCount")] public int RejectedCount { get; set; } /// /// 未開單 /// [JsonPropertyName("NoStatusCount")] public int NoStatusCount { get; set; } /// /// 不開單 /// [JsonPropertyName("NoPunishedCount")] public int NoPunishedCount { get; set; } } }