10 lines
242 B
C#
10 lines
242 B
C#
namespace Operations.Service.Application.State;
|
|
|
|
public sealed record PersistedRestaurantLifecycleEvent(
|
|
string ContextId,
|
|
string OrderId,
|
|
string EventId,
|
|
string EventType,
|
|
string Description,
|
|
DateTime OccurredAtUtc);
|