Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Attributes / Specialized / ParameterAttribute.cs
1 using System;
2
3 namespace Hammock.Attributes.Specialized
4 {
5 #if !SILVERLIGHT
6     [Serializable]
7 #endif
8     [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
9     public class ParameterAttribute : Attribute, INamedAttribute
10     {
11         public ParameterAttribute(string name)
12         {
13             Name = name;
14         }
15
16         #region INamedAttribute Members
17
18         public virtual string Name { get; private set; }
19
20         #endregion
21     }
22 }