14 lines
458 B
C#
14 lines
458 B
C#
|
|
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; } = [];
|
||
|
|
}
|