IOrderPagingInputDto.cs 518 B

123456789101112131415161718192021
  1. using MTWorkHR.Core.IDto;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Models
  8. {
  9. public class OrderPagingInputDto : PagingInputDto, IOrderPagingInputDto
  10. {
  11. public DateTime? SearchDate { get; set; }
  12. public string? AssignedUserId { get; set; }
  13. public long? OrderTypeId { get; set; }
  14. public long? LeaveTypeId { get; set; }
  15. public long? StatusId { get; set; }
  16. }
  17. }