PTV-Street/src/Application/CreateStreetDTO.cs

6 lines
161 B
C#

public class CreateStreetDTO
{
public string Name { get; set; }
public int Capacity { get; set; }
public List<CoordinateDTO> Geometry { get; set; }
}