1234567891011121314151617 |
- using System.Collections.Generic;
- namespace MTWorkHR.Core.IDto
- {
- public interface IUserPagingInputDto:IPagingInputDto
- {
- public long? QualificationId { get; set; }
- public long? UniversityId { get; set; }
- public long? JobTitleId { get; set; }
- public List<long>? IndustryId { get; set; }
- public List<long>? CountryId { get; set; }
- public List<long>? UserTypeId { get; set; }
- public bool? Employed { get; set; }
- }
- }
|