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 MenuCategories { get; set; } = []; }