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

53 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace 報到系統客戶端.Models
{
/// <summary>
/// 活動資訊項目
/// </summary>
public class ClassesItem
{
[JsonProperty("ID")]
public int ID { get; set; }
[JsonProperty("CourseCode")]
public string CourseCode { get; set; }
[JsonProperty("CourseName")]
public string CourseName { get; set; }
[JsonProperty("CourseDate")]
public DateTime CourseDate { get; set; }
[JsonProperty("CourseLocation")]
public string CourseLocation { get; set; }
[JsonProperty("StartTime")]
public string StartTime { get; set; }
[JsonProperty("EndTime")]
public string EndTime { get; set; }
[JsonProperty("Status")]
public string Status { get; set; }
[JsonProperty("Description")]
public string Description { get; set; }
[JsonProperty("NotificationTemplate")]
public string NotificationTemplate { get; set; }
[JsonProperty("AgreedTerms")]
public string AgreedTerms { get; set; }
}
/// <summary>
/// 活動資訊清單
/// </summary>
public class ClassesList : List<ClassesItem>
{
}
}