20 lines
339 B
C#
20 lines
339 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace TrainInfomationProviderService.StationInfo.Entities
|
|
{
|
|
public class BasicStation
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
[JsonProperty("n")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车站编号
|
|
/// </summary>
|
|
[JsonProperty("c")]
|
|
public string Code { get; set; }
|
|
}
|
|
}
|