Api/Brizco.Domain/MartenEntities/Brews/CoffeeBrew.cs

11 lines
307 B
C#

namespace Brizco.Domain.MartenEntities.Brews;
public class CoffeeBrew : IBaseBrew
{
public DateTime LogAt { get; set; }
public string LogBy { get; set; } = string.Empty;
public float Ratio { get; set; }
public int ExtractionTime { get; set; }
public float FinalYield { get; set; }
}