14 lines
398 B
C#
14 lines
398 B
C#
|
|
namespace Meezi.Core.Entities;
|
||
|
|
|
||
|
|
public class Tax : TenantEntity
|
||
|
|
{
|
||
|
|
public string Name { get; set; } = string.Empty;
|
||
|
|
public decimal Rate { get; set; }
|
||
|
|
public bool IsDefault { get; set; }
|
||
|
|
public bool IsRequired { get; set; }
|
||
|
|
public bool IsCompound { get; set; }
|
||
|
|
|
||
|
|
public Cafe Cafe { get; set; } = null!;
|
||
|
|
public ICollection<MenuCategory> MenuCategories { get; set; } = [];
|
||
|
|
}
|