namespace TakeoutSaaS.Application.App.Coupons.PunchCard.Dto;
///
/// 次卡过滤选项。
///
public sealed class PunchCardTemplateOptionDto
{
///
/// 次卡模板 ID。
///
public long TemplateId { get; init; }
///
/// 次卡名称。
///
public string Name { get; init; } = string.Empty;
}