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.
18 lines
606 B
18 lines
606 B
using System; |
|
using Volo.Abp.Application.Dtos; |
|
|
|
namespace Sanhe.Abp.Auditing.SecurityLogs |
|
{ |
|
public class SecurityLogGetByPagedDto : PagedAndSortedResultRequestDto |
|
{ |
|
public DateTime? StartTime { get; set; } |
|
public DateTime? EndTime { get; set; } |
|
public string ApplicationName { get; set; } |
|
public string Identity { get; set; } |
|
public string ActionName { get; set; } |
|
public Guid? UserId { get; set; } |
|
public string UserName { get; set; } |
|
public string ClientId { get; set; } |
|
public string CorrelationId { get; set; } |
|
} |
|
}
|
|
|