GetJobInputDto.cs 277 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Volo.Abp.Application.Dtos;
  5. namespace BaseService.BaseData.JobManagement.Dto
  6. {
  7. public class GetJobInputDto : PagedAndSortedResultRequestDto
  8. {
  9. public string Filter { get; set; }
  10. }
  11. }