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

21 lines
432 B
C#

namespace Web12306.Servers.TrainSuggestion
{
using System;
public class DetailStationInfo : SimpleStationInfo
{
public string fromStationNo { get; set; }
public bool endpoint { get; set; }
public string time { get; set; }
/// <summary>
/// 具体时间
/// </summary>
public DateTime TimePoint { get; set; }
/// <summary>
/// 在停靠站中的索引
/// </summary>
public int Index { get; set; }
}
}