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

10 lines
217 B
C#

namespace Web12306.Servers.TrainSuggestion
{
public class SeatTicketInfo
{
public string code { get; set; }
public string name { get; set; }
public int price { get; set; }
public int count { get; set; }
}
}