namespace NPin.Framework.AuditLogging.Domain.Shared.Consts;
public class AuditLogActionConsts
{
///
/// Default value: 256
///
public static int MaxServiceNameLength { get; set; } = 256;
///
/// Default value: 128
///
public static int MaxMethodNameLength { get; set; } = 128;
///
/// Default value: 2000
///
public static int MaxParametersLength { get; set; } = 2000;
}