namespace Meezi.Core.Entities;
/// Floor area within a branch (سالن، تراس، VIP).
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
Tables { get; set; } = [];
}