namespace TakeoutSaaS.Domain.Stores.Events;
///
/// 门店强制关闭事件。
///
public sealed class StoreForceClosedEvent
{
///
/// 门店 ID。
///
public long StoreId { get; init; }
///
/// 租户 ID。
///
public long TenantId { get; init; }
///
/// 强制关闭原因。
///
public string? Reason { get; init; }
///
/// 强制关闭时间(UTC)。
///
public DateTime ForceClosedAt { get; init; }
}