Files
TakeoutSaaS.TenantApi/src/Application/TakeoutSaaS.Application/App/Stores/Commands/SubmitStoreAuditCommand.cs

15 lines
296 B
C#

using MediatR;
namespace TakeoutSaaS.Application.App.Stores.Commands;
/// <summary>
/// 提交门店审核命令。
/// </summary>
public sealed record SubmitStoreAuditCommand : IRequest<bool>
{
/// <summary>
/// 门店 ID。
/// </summary>
public long StoreId { get; init; }
}