|
namespace Brizco.Domain.MartenEntities.Brews;
|
|
|
|
public class CoffeeBrew
|
|
{
|
|
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; }
|
|
} |