12 lines
318 B
C#
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; }
|
|
} |