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