Application: Add GetStreetDTO

This commit is contained in:
Jonas Seiler 2025-04-03 11:04:02 +02:00
parent c3567fcd59
commit f12822b7de

View File

@ -0,0 +1,6 @@
public class GetStreetDTO
{
public string Name { get; set; }
public int Capacity { get; set; }
public List<CoordinateDTO> Geometry { get; set; }
}