Somehow missed this with earlier checkin of fluent interface.
[castle.git] / Experiments / Castle.Igloo / Castle.Igloo.Test / ScopeTest / Components / SimpleComponent.cs
blob534546fb6300e5635dbb1882e09104255e0d20a6
2 using Castle.Igloo.Attributes;
4 namespace Castle.Igloo.Test.ScopeTest.Components
7 [Scope(Scope = ScopeType.Thread, UseProxy=true)]
8 public class SimpleComponent : IComponent
10 #region IComponent Members
12 public int ID
14 get
16 return 99;
20 #endregion