1 2 3 4 5 6 7 8 9 10 11 12 13 14
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; }