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.
26 lines
624 B
26 lines
624 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Volo.Abp.Application.Dtos;
|
||
|
|
||
|
namespace BaseService.Systems.AuditLoggingManagement.Dto
|
||
|
{
|
||
|
public class AuditLogActionDto : EntityDto<Guid>
|
||
|
{
|
||
|
public Guid? TenantId { get; set; }
|
||
|
|
||
|
public Guid AuditLogId { get; set; }
|
||
|
|
||
|
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; }
|
||
|
|
||
|
public Dictionary<string, object> ExtraProperties { get; set; }
|
||
|
}
|
||
|
}
|