Files
the-biergarten-app/web/backend/Domain/Domain.Entities/Entities/BreweryPostLocation.cs
2026-04-27 18:47:39 -04:00

14 lines
440 B
C#

namespace Domain.Entities;
public class BreweryPostLocation
{
public Guid BreweryPostLocationId { get; set; }
public Guid BreweryPostId { get; set; }
public string AddressLine1 { get; set; } = string.Empty;
public string? AddressLine2 { get; set; }
public string PostalCode { get; set; } = string.Empty;
public Guid CityId { get; set; }
public byte[]? Coordinates { get; set; }
public byte[]? Timer { get; set; }
}