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; } }