8 lines
255 B
C#
8 lines
255 B
C#
|
|
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();
|
|||
|
|
}
|