namespace TakeoutSaaS.Application.App.Coupons.Dto; /// /// 优惠券模板列表结果 DTO。 /// public sealed class CouponTemplateListResultDto { /// /// 列表数据。 /// public IReadOnlyList Items { get; init; } = []; /// /// 总条数。 /// public int TotalCount { get; init; } /// /// 页码。 /// public int Page { get; init; } /// /// 每页条数。 /// public int PageSize { get; init; } /// /// 统计信息。 /// public CouponTemplateStatsDto Stats { get; init; } = new(); }