AuditLogActionDto.cs 624 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using Volo.Abp.Application.Dtos;
  4. namespace BaseService.Systems.AuditLoggingManagement.Dto
  5. {
  6. public class AuditLogActionDto : EntityDto<Guid>
  7. {
  8. public Guid? TenantId { get; set; }
  9. public Guid AuditLogId { get; set; }
  10. public string ServiceName { get; set; }
  11. public string MethodName { get; set; }
  12. public string Parameters { get; set; }
  13. public DateTime ExecutionTime { get; set; }
  14. public int ExecutionDuration { get; set; }
  15. public Dictionary<string, object> ExtraProperties { get; set; }
  16. }
  17. }