IUserPagingInputDto.cs 377 B

123456789101112131415
  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 long? IndustryId { get; set; }
  10. public long? CountryId { get; set; }
  11. }
  12. }