GetAuditLogsInput.cs 765 B

12345678910111213141516171819202122232425262728
  1. using System.Net;
  2. using Volo.Abp.Application.Dtos;
  3. namespace BaseService.Systems.AuditLoggingManagement.Dto
  4. {
  5. public class GetAuditLogsInput : PagedResultRequestDto, IPagedAndSortedResultRequest, IPagedResultRequest, ILimitedResultRequest
  6. {
  7. public string Sorting { get; set; }
  8. public string Url { get; set; }
  9. public string UserName { get; set; }
  10. public string ApplicationName { get; set; }
  11. public string CorrelationId { get; set; }
  12. public string HttpMethod { get; set; }
  13. public HttpStatusCode? HttpStatusCode { get; set; }
  14. public int? MaxExecutionDuration { get; set; }
  15. public int? MinExecutionDuration { get; set; }
  16. public bool HasException { get; set; }
  17. }
  18. }