Files
sryang 577060bc78 chore: 首次簽入 Thinkyu ASP.NET 專案
- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
2026-09-10 09:42:37 +08:00

75 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace 報到系統客戶端.Models
{
/// <summary>
/// 報名人員項目
/// </summary>
public class SignUpItem
{
[JsonProperty("ID")]
public int ID { get; set; }
[JsonProperty("CourseID")]
public int CourseID { get; set; }
[JsonProperty("SeqNo")]
public int SeqNo { get; set; }
[JsonProperty("Name")]
public string Name { get; set; }
[JsonProperty("Mobile")]
public string Mobile { get; set; }
[JsonProperty("Email")]
public string Email { 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("QRCode")]
public string QRCode { get; set; }
[JsonProperty("LossJobTimes")]
public int? LossJobTimes { get; set; }
[JsonProperty("Gender")]
public string Gender { get; set; }
[JsonProperty("AgreementStatus")]
public string AgreementStatus { get; set; }
[JsonProperty("CheckInTime")]
public string CheckInTime { get; set; }
[JsonProperty("CheckOutTime")]
public string CheckOutTime { get; set; }
[JsonProperty("Remark")]
public string Remark { get; set; }
[JsonProperty("DBAppNo")]
public int DBAppNo { get; set; }
}
/// <summary>
/// 報名人員清單
/// </summary>
public class SignUpList : List<SignUpItem>
{
}
}