feat: implement marketing punch card backend module
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user