DurnyklyYol/DurnyklyYol.Blazor.Server/DTO/CargoDto.cs

12 lines
269 B
C#
Raw Permalink Normal View History

2024-09-02 10:07:25 +00:00
namespace DurnyklyYol.Blazor.Server.DTO
{
public class CargoDto
{
public string No { get; set; }
public PointDto Start { get; set; }
public PointDto End { get; set; }
public IEnumerable<PointDto> Points { get; set; }
}
}