Light12306/Web12306/Servers/TrainSuggestion/AlternativeStation.cs

37 lines
673 B
C#
Raw Normal View History

2015-03-13 19:25:08 +08:00
namespace Web12306.Servers.TrainSuggestion
{
using System;
using Newtonsoft.Json;
public class AlternativeStation
{
[JsonIgnore]
public string TrainID { get; set; }
public string TrainCode { get; set; }
//public string Code { get; set; }
public string Name { get; set; }
public bool IsFromStation { get; set; }
public bool IsEndPoint { get; set; }
public DateTime ArriveTime { get; set; }
public TimeSpan StopTime { get; set; }
public bool IsOriginal { get; set; }
/// <summary>
/// <20>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD>
/// </summary>
public bool IsCrossDate { get; set; }
/// <summary>
/// <20><><EFBFBD><EFBFBD>
/// </summary>
public DateTime Date { get; set; }
}
}