mirror of
https://github.com/denglihong2007/CRSim
synced 2026-08-15 18:16:20 +08:00
10 lines
181 B
C#
10 lines
181 B
C#
|
|
namespace CRSim.Core.Models
|
|
{
|
|
public class TrainNumber
|
|
{
|
|
public string Number { get; set; }
|
|
public List<TrainStop> TimeTable { get; set; } = [];
|
|
}
|
|
}
|