17 lines
422 B
C#
17 lines
422 B
C#
namespace Operations.Service.Application.State;
|
|
|
|
public sealed record PersistedRestaurantLifecycleRecord(
|
|
string ContextId,
|
|
string OrderId,
|
|
string CheckId,
|
|
string TableId,
|
|
string OrderState,
|
|
string CheckState,
|
|
int GuestCount,
|
|
bool HasKitchenTicket,
|
|
decimal OutstandingBalance,
|
|
string Currency,
|
|
string Source,
|
|
IReadOnlyCollection<string> ItemIds,
|
|
DateTime UpdatedAtUtc);
|