mirror of https://github.com/abpframework/abp.git
1 changed files with 9 additions and 8 deletions
@ -1,15 +1,16 @@ |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Volo.Abp.Http.ProxyScripting.Generators.JQuery; |
|||
|
|||
public class DynamicJavaScriptProxyOptions |
|||
namespace Volo.Abp.Http.ProxyScripting.Generators.JQuery |
|||
{ |
|||
public HashSet<string> EnabledModules { get; set; } |
|||
public class DynamicJavaScriptProxyOptions |
|||
{ |
|||
public HashSet<string> EnabledModules { get; set; } |
|||
|
|||
public bool EnabledAllModules { get; set; } |
|||
public bool EnabledAllModules { get; set; } |
|||
|
|||
public DynamicJavaScriptProxyOptions() |
|||
{ |
|||
EnabledModules = new HashSet<string> { "app" }; |
|||
public DynamicJavaScriptProxyOptions() |
|||
{ |
|||
EnabledModules = new HashSet<string> { "app" }; |
|||
} |
|||
} |
|||
} |
|||
|
|||
Loading…
Reference in new issue