13 lines
279 B
C#
13 lines
279 B
C#
namespace Kitchen.Ops.Bff.Contracts.Contracts;
|
|
|
|
public sealed record KitchenBoardItemContract(
|
|
string WorkItemId,
|
|
string OrderId,
|
|
string TicketId,
|
|
string TableId,
|
|
string Station,
|
|
string State,
|
|
int Priority,
|
|
string? ClaimedBy,
|
|
int EtaMinutes);
|