namespace Brizco.Domain.MartenEntities.Brews; public class BaseBrew : MartenEntity { public string Name { get; set; } = string.Empty; public string CurrentBrewJson { get; set; } = string.Empty; public string DotnetType { get; set; } = string.Empty; public List PastBrewsJson { get; set; } = new(); }