2024-05-28 18:50:02 +03:30
|
|
|
|
namespace Brizco.Domain.MartenEntities.Brews;
|
|
|
|
|
|
|
2024-06-30 22:29:57 +03:30
|
|
|
|
public class CoffeeBrew : IBaseBrew
|
2024-05-28 18:50:02 +03:30
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|