Files
TakeoutSaaS.TenantApi/src/Domain/TakeoutSaaS.Domain/Stores/Events/StoreForceClosedEvent.cs

28 lines
583 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace TakeoutSaaS.Domain.Stores.Events;
/// <summary>
/// 门店强制关闭事件。
/// </summary>
public sealed class StoreForceClosedEvent
{
/// <summary>
/// 门店 ID。
/// </summary>
public long StoreId { get; init; }
/// <summary>
/// 租户 ID。
/// </summary>
public long TenantId { get; init; }
/// <summary>
/// 强制关闭原因。
/// </summary>
public string? Reason { get; init; }
/// <summary>
/// 强制关闭时间UTC
/// </summary>
public DateTime ForceClosedAt { get; init; }
}