1 namespace Castle
.NewGenerator
.Core
5 [AttributeUsage(AttributeTargets
.Class
, AllowMultiple
= false, Inherited
= false)]
6 public class GeneratorOptionsAttribute
: Attribute
8 private readonly Type optionClass
;
10 public GeneratorOptionsAttribute(Type optionClass
)
12 this.optionClass
= optionClass
;
15 public Type OptionClass
17 get { return optionClass; }