1 namespace Castle
.NewGenerator
.Core
5 public class GeneratorAttribute
: Attribute
7 private readonly string id
;
8 private readonly string fullName
;
10 public GeneratorAttribute(string id
, string fullName
)
13 this.fullName
= fullName
;
21 public string FullName
23 get { return fullName; }