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