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.
27 lines
683 B
27 lines
683 B
using System; |
|
using System.Collections.Generic; |
|
using Volo.Abp.Application.Dtos; |
|
using Volo.Abp.Auditing; |
|
|
|
namespace Sanhe.Abp.Auditing.AuditLogs |
|
{ |
|
public class EntityChangeDto : ExtensibleEntityDto<Guid> |
|
{ |
|
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 List<EntityPropertyChangeDto> PropertyChanges { get; set; } |
|
|
|
public EntityChangeDto() |
|
{ |
|
PropertyChanges = new List<EntityPropertyChangeDto>(); |
|
} |
|
} |
|
}
|
|
|