EntityPropertyChangeDto.cs 482 B

1234567891011121314151617181920
  1. using System;
  2. using Volo.Abp.Application.Dtos;
  3. namespace BaseService.Systems.AuditLoggingManagement.Dto
  4. {
  5. public class EntityPropertyChangeDto : EntityDto<Guid>
  6. {
  7. public Guid? TenantId { get; set; }
  8. public Guid EntityChangeId { get; set; }
  9. public string NewValue { get; set; }
  10. public string OriginalValue { get; set; }
  11. public string PropertyName { get; set; }
  12. public string PropertyTypeFullName { get; set; }
  13. }
  14. }