Files
meezi/src/Meezi.Core/Entities/TableSection.cs
T

14 lines
458 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
namespace Meezi.Core.Entities;
/// <summary>Floor area within a branch (سالن، تراس، VIP).</summary>
public class TableSection : TenantEntity
{
public string BranchId { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public int SortOrder { get; set; }
public bool IsActive { get; set; } = true;
public Branch Branch { get; set; } = null!;
public ICollection<Table> Tables { get; set; } = [];
}