18 lines
390 B
C#
18 lines
390 B
C#
namespace TakeoutSaaS.Application.App.Coupons.PunchCard.Dto;
|
|
|
|
/// <summary>
|
|
/// 次卡过滤选项。
|
|
/// </summary>
|
|
public sealed class PunchCardTemplateOptionDto
|
|
{
|
|
/// <summary>
|
|
/// 次卡模板 ID。
|
|
/// </summary>
|
|
public long TemplateId { get; init; }
|
|
|
|
/// <summary>
|
|
/// 次卡名称。
|
|
/// </summary>
|
|
public string Name { get; init; } = string.Empty;
|
|
}
|