53 lines
1.2 KiB
C#
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>
|
|
{
|
|
}
|
|
}
|