mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-04 08:06:25 +08:00
21 lines
464 B
C#
21 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRSim.Core.Models
|
|
{
|
|
public class Station
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<WaitingArea> WaitingAreas { get; set; } = [];
|
|
|
|
public List<TrainStop> TrainStops { get; set; } = [];
|
|
|
|
public List<Platform> Platforms { get; set; } = [];
|
|
}
|
|
}
|