using System; using Volo.Abp.Application.Dtos; namespace BaseService.Systems.AuditLoggingManagement.Dto { public class EntityPropertyChangeDto : EntityDto { public Guid? TenantId { get; set; } public Guid EntityChangeId { get; set; } public string NewValue { get; set; } public string OriginalValue { get; set; } public string PropertyName { get; set; } public string PropertyTypeFullName { get; set; } } }