using System.Collections.Generic;

namespace MTWorkHR.Core.IDto
{
    public interface IUserPagingInputDto:IPagingInputDto
    {
        public long? DepartmentId { get; set; }

    }
}