/// <summary>
/// 站別對應平台類別
/// </summary>
public class SitePlatForm
{
/// 定義平台類型
public enum Platform
None = 0,
KU = 1,
TZ = 2,
APP = 3,
}
/// 站別代號
public int Site { get; set; }
/// 平台類型
public Platform Form { get; set; }