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; }
///
/// ΚΗ·ρΏηΜμ
///
public bool IsCrossDate { get; set; }
///
/// ΘΥΖΪ
///
public DateTime Date { get; set; }
}
}