This commit is contained in:
Stef Heyenrath
2021-07-23 21:30:01 +02:00
parent 42073eed3d
commit d129f52441
11 changed files with 108 additions and 96 deletions
@@ -17,10 +17,12 @@ namespace ProxyInterfaceGenerator
public class {ClassName} : Attribute
{{
public Type Type {{ get; }}
public bool ProxyAll {{ get; }}
public {ClassName}(Type type)
public {ClassName}(Type type, bool proxyAll = true)
{{
Type = type;
ProxyAll = proxyAll;
}}
}}
}}"