mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 10:04:00 +00:00
14 lines
440 B
C#
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; }
|
|
}
|