21 lines
465 B
C#
21 lines
465 B
C#
using MediatR;
|
|
using TakeoutSaaS.Application.App.StoreAudits.Dto;
|
|
|
|
namespace TakeoutSaaS.Application.App.StoreAudits.Commands;
|
|
|
|
/// <summary>
|
|
/// 解除强制关闭命令。
|
|
/// </summary>
|
|
public sealed record ReopenStoreCommand : IRequest<StoreAuditActionResultDto>
|
|
{
|
|
/// <summary>
|
|
/// 门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 备注。
|
|
/// </summary>
|
|
public string? Remark { get; init; }
|
|
}
|