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