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; } /// /// 具体时间 /// public DateTime TimePoint { get; set; } /// /// 在停靠站中的索引 /// public int Index { get; set; } } }