using System; using Volo.Abp.Application.Dtos; namespace Sanhe.Abp.Auditing.AuditLogs { public class AuditLogActionDto : ExtensibleEntityDto { 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; } } }