namespace TakeoutSaaS.Application.App.Coupons.Dto;
///
/// 优惠券统计 DTO。
///
public sealed class CouponTemplateStatsDto
{
///
/// 优惠券总数。
///
public int TotalCount { get; init; }
///
/// 进行中数量。
///
public int OngoingCount { get; init; }
///
/// 已领取总数。
///
public int ClaimedCount { get; init; }
///
/// 已核销总数。
///
public int RedeemedCount { get; init; }
///
/// 核销率(百分比)。
///
public decimal RedeemRate { get; init; }
}