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.
21 lines
482 B
21 lines
482 B
1 year ago
|
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; }
|
||
|
}
|
||
|
}
|