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

8 lines
186 B
C#

namespace Kitchen.Ops.Bff.Contracts.Requests;
public sealed record SetKitchenOrderPriorityRequest(
string ContextId,
string WorkItemId,
int Priority,
string UpdatedBy);