namespace NPin.Framework.AuditLogging.Domain.Shared.Consts; public class EntityPropertyChangeConsts { /// /// Default value: 512 /// public static int MaxNewValueLength { get; set; } = 512; /// /// Default value: 512 /// public static int MaxOriginalValueLength { get; set; } = 512; /// /// Default value: 128 /// public static int MaxPropertyNameLength { get; set; } = 128; /// /// Default value: 64 /// public static int MaxPropertyTypeFullNameLength { get; set; } = 64; }