Light12306/TrainInfomationProviderService/Web/Models/Dto/Station.cs

19 lines
352 B
C#
Raw Normal View History

2014-12-01 21:50:08 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace TrainInfomationProviderService.Web.Models.Dto
{
public class Station
{
[JsonProperty("code")]
public string Code { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
}
}