All checks were successful
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Successful in 2m4s
21 lines
436 B
C#
21 lines
436 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.Coupons.FlashSale.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除限时折扣活动命令。
|
|
/// </summary>
|
|
public sealed class DeleteFlashSaleCampaignCommand : IRequest<Unit>
|
|
{
|
|
/// <summary>
|
|
/// 操作门店 ID。
|
|
/// </summary>
|
|
public long OperationStoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 活动 ID。
|
|
/// </summary>
|
|
public long CampaignId { get; init; }
|
|
}
|
|
|