28 lines
683 B
C#
28 lines
683 B
C#
namespace TakeoutSaaS.Application.App.Coupons.NewCustomer.Dto;
|
||
|
||
/// <summary>
|
||
/// 保存新客有礼券规则输入 DTO。
|
||
/// </summary>
|
||
public sealed class NewCustomerSaveCouponRuleInputDto
|
||
{
|
||
/// <summary>
|
||
/// 券类型(amount_off/discount/free_shipping)。
|
||
/// </summary>
|
||
public string CouponType { get; init; } = "amount_off";
|
||
|
||
/// <summary>
|
||
/// 面值或折扣值。
|
||
/// </summary>
|
||
public decimal? Value { get; init; }
|
||
|
||
/// <summary>
|
||
/// 使用门槛金额。
|
||
/// </summary>
|
||
public decimal? MinimumSpend { get; init; }
|
||
|
||
/// <summary>
|
||
/// 有效期天数。
|
||
/// </summary>
|
||
public int ValidDays { get; init; }
|
||
}
|