using System.Collections.Generic;

namespace MTWorkHR.Core.IDto
{
    public interface IOrderPagingInputDto:IPagingInputDto
    {
        public DateTime? SearchDate { get; set; }
        public string? AssignedUserId { get; set; }

    }
}