From f12822b7de2ba959c1eadabdaf0a4c16f401f0e0 Mon Sep 17 00:00:00 2001 From: Jonas Seiler Date: Thu, 3 Apr 2025 11:04:02 +0200 Subject: [PATCH] Application: Add GetStreetDTO --- src/Application/GetStreetDTO.cs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/Application/GetStreetDTO.cs diff --git a/src/Application/GetStreetDTO.cs b/src/Application/GetStreetDTO.cs new file mode 100644 index 0000000..b28b5f8 --- /dev/null +++ b/src/Application/GetStreetDTO.cs @@ -0,0 +1,6 @@ +public class GetStreetDTO +{ + public string Name { get; set; } + public int Capacity { get; set; } + public List Geometry { get; set; } +} \ No newline at end of file