From 5074cb56960cbd5ac0bae3ec2a14ae5ad74c7f30 Mon Sep 17 00:00:00 2001 From: Jonas Seiler Date: Thu, 3 Apr 2025 11:04:12 +0200 Subject: [PATCH] Application: Add AddPointDTO --- src/Application/AddPointDTO.cs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Application/AddPointDTO.cs diff --git a/src/Application/AddPointDTO.cs b/src/Application/AddPointDTO.cs new file mode 100644 index 0000000..a9208ab --- /dev/null +++ b/src/Application/AddPointDTO.cs @@ -0,0 +1,5 @@ +public class AddPointDTO +{ + public CoordinateDTO Point { get; set; } + public bool usePostGIS { get; set; } +} \ No newline at end of file