Files
Kg.SeaTime/Service/Application.Domain.Entity/model/MapBusTo.cs
2026-07-09 11:29:19 +08:00

12 lines
318 B
C#

namespace Application.Domain.Entity;
public class MapBusTo
{
public string name { get; set; }
public string mapId { get; set; }
public string code { get; set; }
public string par { get; set; }
public int time { get; set; }
public int sTime { get; set; }
public int eTime { get; set; }
}