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