15 lines
359 B
C#
15 lines
359 B
C#
namespace Yi.Framework.AuditLogging.Domain.Shared.Consts;
|
|
|
|
public class EntityChangeConsts
|
|
{
|
|
/// <summary>
|
|
/// Default value: 128
|
|
/// </summary>
|
|
public static int MaxEntityTypeFullNameLength { get; set; } = 128;
|
|
|
|
/// <summary>
|
|
/// Default value: 128
|
|
/// </summary>
|
|
public static int MaxEntityIdLength { get; set; } = 128;
|
|
}
|