using Newtonsoft.Json;
namespace TrainInfomationProviderService.StationInfo.Entities
{
public class BasicStation
{
///
/// 名称
///
[JsonProperty("n")]
public string Name { get; set; }
///
/// 车站编号
///
[JsonProperty("c")]
public string Code { get; set; }
}
}