kitchen-ops-bff/src/Kitchen.Ops.Bff.Contracts/Responses/SetKitchenOrderPriorityResponse.cs
2026-03-31 16:40:58 -06:00

9 lines
204 B
C#

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