using MediatR;
using TakeoutSaaS.Application.App.Billings.Dto;
using TakeoutSaaS.Shared.Abstractions.Results;
namespace TakeoutSaaS.Application.App.Billings.Queries;
///
/// 查询逾期账单列表。
///
public sealed record GetOverdueBillingsQuery : IRequest>
{
///
/// 页码(从 1 开始)。
///
public int PageNumber { get; init; } = 1;
///
/// 每页条数。
///
public int PageSize { get; init; } = 20;
}