sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/AuditLogs/AuditLogActionDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

15 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; }
}