UserPagingInputDto.cs 511 B

1234567891011121314151617181920
  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 long? IndustryId { get; set; }
  15. public long? CountryId { get; set; }
  16. }
  17. }