You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
765 B
28 lines
765 B
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; }
|
|
}
|
|
}
|
|
|