21 lines
432 B
C#
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; }
|
|||
|
}
|
|||
|
}
|