11 lines
239 B
C#
11 lines
239 B
C#
using Yi.Framework.AuditLogging.Domain.Entities;
|
|
|
|
namespace Yi.Framework.AuditLogging.Domain;
|
|
|
|
public class EntityChangeWithUsername
|
|
{
|
|
public EntityChangeEntity EntityChange { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
}
|