using MediatR;
namespace TakeoutSaaS.Application.App.Coupons.PunchCard.Commands;
///
/// 删除次卡模板命令。
///
public sealed class DeletePunchCardTemplateCommand : IRequest
{
///
/// 操作门店 ID。
///
public long StoreId { get; init; }
///
/// 次卡模板 ID。
///
public long TemplateId { get; init; }
}