Files
TakeoutSaaS.TenantApi/src/Application/TakeoutSaaS.Application/App/Coupons/FlashSale/Commands/DeleteFlashSaleCampaignCommand.cs
MSuMshk 0f3542f33f
All checks were successful
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Successful in 2m4s
feat(marketing): implement flash sale module api and app layer
2026-03-02 11:08:14 +08:00

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; }
}