Removed untyped contructor from ComponentRegistration and add a protected setter.
[castle.git] / MonoRail / NewGenerator / Castle.NewGenerator.Core / Attributes / GeneratorAttribute.cs
blobe195322ea5a73e693c1020e978d7b1f00c39703e
1 namespace Castle.NewGenerator.Core
3 using System;
5 public class GeneratorAttribute : Attribute
7 private readonly string id;
8 private readonly string fullName;
10 public GeneratorAttribute(string id, string fullName)
12 this.id = id;
13 this.fullName = fullName;
16 public string Id
18 get { return id; }
21 public string FullName
23 get { return fullName; }