summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Tables/Place.cs
blob: ff95c96ef9e8e429573a9c9c3c2004d1c8af0153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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; }
}