using System.Collections.Generic;

namespace MTWorkHR.Core.IDto
{
    public interface IUserTaskPagingInputDto:IPagingInputDto
    {
        public long? ProjectId { get; set; }
        public long? StatusId { get; set; }
        public int? PriorityId { get; set; }
        public string? AssignedUserId { get; set; }

    }
}