15 lines
423 B
C#
15 lines
423 B
C#
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();
|
|
}
|
|
|
|
public interface IBaseBrew
|
|
{
|
|
DateTime LogAt { get; set; }
|
|
string LogBy { get; set; }
|
|
} |