sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/AuditLogs/EntityChangeDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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; }
}