mirror of
https://github.com/denglihong2007/CRSim
synced 2026-06-27 20:55:48 +08:00
11 lines
238 B
C#
11 lines
238 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace CRSim.Core.Models
|
|
{
|
|
public class WaitingArea
|
|
{
|
|
public string Name { get; set; }
|
|
public ObservableCollection<TicketCheck> TicketChecks { get; set; } = [];
|
|
}
|
|
}
|