8 lines
262 B
C#
8 lines
262 B
C#
namespace BackOffice.BFF.Application.CommissionCQ.Queries.GetAvailableWeeks;
|
|
|
|
public class GetAvailableWeeksQuery : IRequest<GetAvailableWeeksResponseDto>
|
|
{
|
|
public int FutureWeeksCount { get; init; } = 4;
|
|
public int PastWeeksCount { get; init; } = 12;
|
|
}
|