erp-platform/api/src/Erp.Platform.Application.Contracts/AuditLogs/AuditLogActionDto.cs

16 lines
514 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-06-16 12:16:27 +00:00
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.AuditLogs;
2025-06-16 12:16:27 +00:00
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; }
2025-11-11 19:49:52 +00:00
}