20 lines
420 B
C#
20 lines
420 B
C#
using MediatR;
|
|
|
|
namespace TakeoutSaaS.Application.App.Coupons.PunchCard.Commands;
|
|
|
|
/// <summary>
|
|
/// 删除次卡模板命令。
|
|
/// </summary>
|
|
public sealed class DeletePunchCardTemplateCommand : IRequest
|
|
{
|
|
/// <summary>
|
|
/// 操作门店 ID。
|
|
/// </summary>
|
|
public long StoreId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 次卡模板 ID。
|
|
/// </summary>
|
|
public long TemplateId { get; init; }
|
|
}
|