using System; using System.Collections.Generic; using Newtonsoft.Json; namespace 報到系統客戶端.Models { /// /// 簽到簽退紀錄項目 /// public class CheckInItem { [JsonProperty("ID")] public int ID { get; set; } [JsonProperty("CourseID")] public int CourseID { get; set; } [JsonProperty("Name")] public string Name { get; set; } [JsonProperty("Mobile")] public string Mobile { get; set; } [JsonProperty("SignUpType")] public string SignUpType { get; set; } [JsonProperty("IDNumber")] public string IDNumber { get; set; } [JsonProperty("IDType")] public string IDType { get; set; } [JsonProperty("MealType")] public string MealType { get; set; } [JsonProperty("Email")] public string Email { get; set; } [JsonProperty("LossJobTimes")] public int? LossJobTimes { get; set; } [JsonProperty("Gender")] public string Gender { get; set; } [JsonProperty("AgreementStatus")] public string AgreementStatus { get; set; } [JsonProperty("CheckInType")] public string CheckInType { get; set; } [JsonProperty("CheckInTime")] public string CheckInTime { get; set; } } /// /// 簽到簽退紀錄清單 /// public class CheckInList : List { } }