using _0_Framework.Application; namespace CompanyManagment.App.Contracts.Contract; public class GetContractListForClientRequest: PaginationRequest { public int Year { get; set; } public int Month { get; set; } public string StartDate { get; set; } public string EndDate { get; set; } public long EmployeeId { get; set; } public ContractListOrderType? OrderType { get; set; } }