9 lines
327 B
C#
9 lines
327 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();
|
|
} |