namespace Web12306.Servers.TrainSuggestion { using System.Collections.Generic; public class TrainInfo { public string id { get; set; } public string code { get; set; } public int available { get; set; } public SimpleStationInfo start { get; set; } public DetailStationInfo from { get; set; } public DetailStationInfo to { get; set; } public Elapsedtime elapsedTime { get; set; } public SimpleStationInfo end { get; set; } public string ypinfo { get; set; } public string ypinfo_ex { get; set; } public string locationCode { get; set; } public int controlDay { get; set; } public string supportCard { get; set; } public string saleTime { get; set; } public string secureStr { get; set; } public string date { get; set; } public string limitSellInfo { get; set; } public SeatTicketInfo[] tickets { get; set; } public Dictionary ticketMap { get; set; } } }