| 12345678910111213141516171819202122232425262728 |
- using System.Net;
- using Volo.Abp.Application.Dtos;
- namespace BaseService.Systems.AuditLoggingManagement.Dto
- {
- public class GetAuditLogsInput : PagedResultRequestDto, IPagedAndSortedResultRequest, IPagedResultRequest, ILimitedResultRequest
- {
- public string Sorting { get; set; }
- public string Url { get; set; }
- public string UserName { get; set; }
- public string ApplicationName { get; set; }
- public string CorrelationId { get; set; }
- public string HttpMethod { get; set; }
- public HttpStatusCode? HttpStatusCode { get; set; }
- public int? MaxExecutionDuration { get; set; }
- public int? MinExecutionDuration { get; set; }
- public bool HasException { get; set; }
- }
- }
|