| 1234567891011121314151617181920 |
- using System;
- using Volo.Abp.Application.Dtos;
- namespace BaseService.Systems.AuditLoggingManagement.Dto
- {
- public class EntityPropertyChangeDto : EntityDto<Guid>
- {
- 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; }
- }
- }
|