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

    }
}