25 lines
519 B
C#
25 lines
519 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace TrainInfomationProviderService.TrainInfo.Entities
|
|||
|
{
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
public class TrainDataMasterStore
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 创建 <see cref="TrainDataMasterStore" /> 的新实例(TrainDataMasterStore)
|
|||
|
/// </summary>
|
|||
|
public TrainDataMasterStore()
|
|||
|
{
|
|||
|
TrainData = new TrainDataStore();
|
|||
|
}
|
|||
|
|
|||
|
[JsonProperty("data")]
|
|||
|
public TrainDataStore TrainData { get; set; }
|
|||
|
}
|
|||
|
}
|