23 lines
787 B
C#
23 lines
787 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Application.Dtos;
|
|
using Volo.Abp.Auditing;
|
|
|
|
namespace Sozsoft.Platform.AuditLogs;
|
|
|
|
public class EntityChangeDto : EntityDto<Guid>
|
|
{
|
|
public EntityChangeDto()
|
|
{
|
|
PropertyChanges = new List<EntityPropertyChangeDto>();
|
|
}
|
|
|
|
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<EntityPropertyChangeDto> PropertyChanges { get; protected set; }
|
|
}
|
|
|