summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Tables/Place.cs
diff options
context:
space:
mode:
Diffstat (limited to 'api/WhatApi/Tables/Place.cs')
-rw-r--r--api/WhatApi/Tables/Place.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/api/WhatApi/Tables/Place.cs b/api/WhatApi/Tables/Place.cs
new file mode 100644
index 0000000..ff95c96
--- /dev/null
+++ b/api/WhatApi/Tables/Place.cs
@@ -0,0 +1,11 @@
+using NetTopologySuite.Geometries;
+
+namespace WhatApi.Tables;
+
+public class Place
+{
+ public Guid Id { get; set; }
+ public Guid ContentId { get; set; }
+ public Content Content { get; set; }
+ public required Point Location { get; set; }
+} \ No newline at end of file