30 lines
818 B
C#
30 lines
818 B
C#
|
|
namespace BackOffice.BFF.Application.CommissionCQ.Queries.GetUserWeeklyBalances;
|
||
|
|
|
||
|
|
public record GetUserWeeklyBalancesQuery : IRequest<GetUserWeeklyBalancesResponseDto>
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// شناسه کاربر (فیلتر اختیاری)
|
||
|
|
/// </summary>
|
||
|
|
public long? UserId { get; init; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// شماره هفته (فیلتر اختیاری)
|
||
|
|
/// </summary>
|
||
|
|
public string? WeekNumber { get; init; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// فقط تعادلهای فعال (منقضی نشده)
|
||
|
|
/// </summary>
|
||
|
|
public bool OnlyActive { get; init; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// شماره صفحه
|
||
|
|
/// </summary>
|
||
|
|
public int PageIndex { get; init; } = 1;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// تعداد در صفحه
|
||
|
|
/// </summary>
|
||
|
|
public int PageSize { get; init; } = 10;
|
||
|
|
}
|