IOrderPagingInputDto.cs 244 B

123456789101112
  1. using System.Collections.Generic;
  2. namespace MTWorkHR.Core.IDto
  3. {
  4. public interface IOrderPagingInputDto:IPagingInputDto
  5. {
  6. public DateTime? SearchDate { get; set; }
  7. public string? AssignedUserId { get; set; }
  8. }
  9. }