2024-05-28 18:50:02 +03:30
|
|
|
|
namespace Brizco.Domain.MartenEntities.Brews;
|
|
|
|
|
|
|
|
|
|
|
|
public class BaseBrew : MartenEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string CurrentBrewJson { get; set; } = string.Empty;
|
|
|
|
|
|
public string DotnetType { get; set; } = string.Empty;
|
|
|
|
|
|
public List<string> PastBrewsJson { get; set; } = new();
|
2024-06-30 22:29:57 +03:30
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public interface IBaseBrew
|
|
|
|
|
|
{
|
|
|
|
|
|
DateTime LogAt { get; set; }
|
|
|
|
|
|
string LogBy { get; set; }
|
2024-05-28 18:50:02 +03:30
|
|
|
|
}
|