Backend/e-suite.Modules.AuditLog/AuditLog.UnitTests/TestEntity.cs
2026-01-20 21:50:10 +00:00

14 lines
283 B
C#

using System.ComponentModel;
namespace AuditLog.UnitTests;
//note: used by unit test GetAuditLogEntries_WhenAuditEntityHasDisplayName_DisplayNameIsSetIsEntityDisplayname
[DisplayName("Test display name")]
public class TestEntity
{
}
public class TestEntityTwo
{
}