using MTWorkHR.Core.IDto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MTWorkHR.Application.Models { public class UserPagingInputDto : PagingInputDto, IUserPagingInputDto { 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; } } }