namespace Kitchen.Domain.Models; public enum KitchenWorkflowState { Queued = 0, Preparing = 1, ReadyForPickup = 2, Delivered = 3, Failed = 4 }