IUserPagingInputDto.cs 485 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace MTWorkHR.Core.IDto
  3. {
  4. public interface IUserPagingInputDto:IPagingInputDto
  5. {
  6. public long? QualificationId { get; set; }
  7. public long? UniversityId { get; set; }
  8. public long? JobTitleId { get; set; }
  9. public List<long>? IndustryId { get; set; }
  10. public List<long>? CountryId { get; set; }
  11. public List<long>? UserTypeId { get; set; }
  12. public bool? Employed { get; set; }
  13. }
  14. }