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.
19 lines
418 B
19 lines
418 B
3 years ago
|
using System;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
|
||
|
namespace Sanhe.Abp.Auditing.AuditLogs
|
||
|
{
|
||
|
public class AuditLogActionDto : ExtensibleEntityDto<Guid>
|
||
|
{
|
||
|
public string ServiceName { get; set; }
|
||
|
|
||
|
public string MethodName { get; set; }
|
||
|
|
||
|
public string Parameters { get; set; }
|
||
|
|
||
|
public DateTime ExecutionTime { get; set; }
|
||
|
|
||
|
public int ExecutionDuration { get; set; }
|
||
|
}
|
||
|
}
|