19 lines
348 B
C#
19 lines
348 B
C#
namespace Web12306.Servers.TrainSuggestion
|
|
{
|
|
using Newtonsoft.Json;
|
|
|
|
public class SuggestItem
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("code")]
|
|
public string Code { get; set; }
|
|
|
|
[JsonProperty("ep")]
|
|
public bool EndPoint { get; set; }
|
|
|
|
[JsonProperty("st")]
|
|
public int StopTime { get; set; }
|
|
}
|
|
} |