Light12306/Web12306/Servers/TrainSuggestion/AlternativeStation.cs
2015-03-13 19:25:08 +08:00

37 lines
673 B
C#

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>
/// ÊÇ·ñ¿çÌì
/// </summary>
public bool IsCrossDate { get; set; }
/// <summary>
/// ÈÕÆÚ
/// </summary>
public DateTime Date { get; set; }
}
}