UserPagingInputDto.cs 619 B

12345678910111213141516171819202122
  1. using MTWorkHR.Core.IDto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class UserPagingInputDto : PagingInputDto, IUserPagingInputDto
  10. {
  11. public long? QualificationId { get; set; }
  12. public long? UniversityId { get; set; }
  13. public long? JobTitleId { get; set; }
  14. public List<long>? IndustryId { get; set; }
  15. public List<long>? CountryId { get; set; }
  16. public List<long>? UserTypeId { get; set; }
  17. public bool? Employed { get; set; }
  18. }
  19. }