Files
TakeoutSaaS.TenantApi/src/Application/TakeoutSaaS.Application/App/Coupons/Seckill/Queries/GetSeckillCampaignDetailQuery.cs
MSuMshk c9e2226b48
All checks were successful
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Successful in 1m55s
feat(marketing): implement tenant seckill backend module
2026-03-02 13:08:56 +08:00

23 lines
495 B
C#

using MediatR;
using TakeoutSaaS.Application.App.Coupons.Seckill.Dto;
namespace TakeoutSaaS.Application.App.Coupons.Seckill.Queries;
/// <summary>
/// 查询秒杀活动详情。
/// </summary>
public sealed class GetSeckillCampaignDetailQuery : IRequest<SeckillDetailDto?>
{
/// <summary>
/// 操作门店 ID。
/// </summary>
public long OperationStoreId { get; init; }
/// <summary>
/// 活动 ID。
/// </summary>
public long CampaignId { get; init; }
}