11 lines
164 B
C#
11 lines
164 B
C#
namespace Kitchen.Domain.Models;
|
|
|
|
public enum KitchenWorkflowState
|
|
{
|
|
Queued = 0,
|
|
Preparing = 1,
|
|
ReadyForPickup = 2,
|
|
Delivered = 3,
|
|
Failed = 4
|
|
}
|