using System; using System.Collections.Generic; using Volo.Abp.Application.Dtos; using Volo.Abp.Auditing; namespace Sozsoft.Platform.AuditLogs; public class EntityChangeDto : EntityDto { public EntityChangeDto() { PropertyChanges = new List(); } public virtual Guid AuditLogId { get; protected set; } public virtual DateTime ChangeTime { get; protected set; } public virtual EntityChangeType ChangeType { get; protected set; } public virtual Guid? EntityTenantId { get; protected set; } public virtual string EntityId { get; protected set; } public virtual string EntityTypeFullName { get; protected set; } public virtual ICollection PropertyChanges { get; protected set; } }