Files

11 lines
239 B
C#
Raw Permalink Normal View History

2024-01-23 11:52:49 +08:00
using Yi.Framework.AuditLogging.Domain.Entities;
namespace Yi.Framework.AuditLogging.Domain;
public class EntityChangeWithUsername
{
public EntityChangeEntity EntityChange { get; set; }
public string UserName { get; set; }
}