mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-05 17:05:52 +08:00
14 lines
312 B
C#
14 lines
312 B
C#
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; } = [];
|
|
}
|
|
}
|