All checks were successful
Build and Deploy TenantApi + SkuWorker / build-and-deploy (push) Successful in 1m55s
23 lines
495 B
C#
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; }
|
|
}
|
|
|
|
|