14 lines
283 B
C#
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
|
|
{
|
|
} |