14 lines
209 B
C#
14 lines
209 B
C#
namespace TakeoutSaaS.Domain.Queues.Enums;
|
|
|
|
/// <summary>
|
|
/// 排队状态。
|
|
/// </summary>
|
|
public enum QueueStatus
|
|
{
|
|
Waiting = 0,
|
|
Calling = 1,
|
|
Completed = 2,
|
|
Cancelled = 3,
|
|
Expired = 4
|
|
}
|