17 lines
316 B
C#
17 lines
316 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TrainInfomationProviderService.StationInfo.Entities
|
|
{
|
|
public class StationDetailInfo : BasicStation
|
|
{
|
|
[JsonProperty("p")]
|
|
public string PyFull { get; set; }
|
|
|
|
[JsonProperty("y")]
|
|
public string Py { get; set; }
|
|
|
|
[JsonProperty("s")]
|
|
public int Sort { get; set; }
|
|
}
|
|
}
|