namespace Brizco.Domain.MartenEntities.Brews; public class BaseRecipeLDto { public string Name { get; set; } = string.Empty; public object CurrentRecipe { get; set; } = string.Empty; public List PastRecipes { get; set; } = new(); }