10 lines
367 B
C#
10 lines
367 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 Guid ComplexId { get; set; }
|
|
} |