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.
29 lines
778 B
29 lines
778 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Auditing;
|
|
|
|
namespace BaseService.Systems.AuditLoggingManagement.Dto
|
|
{
|
|
public class EntityChangeDto : EntityDto<Guid>
|
|
{
|
|
public Guid AuditLogId { get; set; }
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public DateTime ChangeTime { get; set; }
|
|
|
|
public EntityChangeType ChangeType { get; set; }
|
|
|
|
public Guid? EntityTenantId { get; set; }
|
|
|
|
public string EntityId { get; set; }
|
|
|
|
public string EntityTypeFullName { get; set; }
|
|
|
|
public Collection<EntityPropertyChangeDto> PropertyChanges { get; set; }
|
|
|
|
public Dictionary<string, object> ExtraProperties { get; set; }
|
|
}
|
|
}
|
|
|