mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
14 lines
445 B
C#
14 lines
445 B
C#
namespace Domain.Entities;
|
|
|
|
public class BreweryPost
|
|
{
|
|
public Guid BreweryPostId { get; set; }
|
|
public Guid PostedById { get; set; }
|
|
public string BreweryName { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
public byte[]? Timer { get; set; }
|
|
public BreweryPostLocation? Location { get; set; }
|
|
}
|