namespace Elsa.JavaScript.Options
{
public class JintOptions
{
///
/// Enables access to any .NET class. Do not enable if you are executing workflows from untrusted sources (e.g. user defined workflows).
///
/// See Jint docs for more: https://github.com/sebastienros/jint#accessing-net-assemblies-and-classes
///
public bool AllowClrAccess { get; set; }
///
/// Enables access to .NET configuration via the getConfig function.
/// Do not enable if you are executing workflows from untrusted sources (e.g user defined workflows).
///
public bool AllowConfigurationAccess { get; set; }
}
}