16 lines
518 B
C#
16 lines
518 B
C#
|
|
using System;
|
|||
|
|
using Volo.Abp.Application.Dtos;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.AuditLogs;
|
|||
|
|
|
|||
|
|
public class AuditLogActionDto : EntityDto<Guid>
|
|||
|
|
{
|
|||
|
|
public virtual Guid AuditLogId { get; protected set; }
|
|||
|
|
public virtual string ServiceName { get; protected set; }
|
|||
|
|
public virtual string MethodName { get; protected set; }
|
|||
|
|
public virtual string Parameters { get; protected set; }
|
|||
|
|
public virtual DateTime ExecutionTime { get; protected set; }
|
|||
|
|
public virtual int ExecutionDuration { get; protected set; }
|
|||
|
|
|
|||
|
|
}
|