- 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 long? IndustryId { get; set; }
- public long? CountryId { get; set; }
- }
- }
|