using System.Collections.Generic; using UnityEngine; namespace DDD.Tycoons { public class ServingTable : MonoBehaviour { [field: SerializeField] public List ServingTableSeats { get; private set; } = new(2); } }