operations-service/src/Operations.Service.Application/State/PersistedRestaurantLifecycleEvent.cs
2026-03-31 18:38:30 -06:00

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);