kitchen-ops-bff/src/Kitchen.Ops.Bff.Contracts/Responses/SetKitchenOrderPriorityResponse.cs
José René White Enciso c4d903016b feat(kitchen-ops): add priority edge flow
Why: baseline pending kitchen priority edge handlers and runtime assets before security wave.

What: add set-priority contracts/handlers, service adapter updates, and docs/docker assets.

Rule: keep technical intent and align repository workflow.
2026-03-08 15:00:08 -06:00

8 lines
183 B
C#

namespace Kitchen.Ops.Bff.Contracts.Responses;
public sealed record SetKitchenOrderPriorityResponse(
string ContextId,
string OrderId,
bool Updated,
string Summary);