Merge pull request #2429 from alexanderkyte/nunit_lite_integration
[mono.git] / mcs / class / System / ReferenceSources / SRCategoryAttribute.cs
1 namespace System.ComponentModel
2 {
3         sealed class SRCategoryAttribute : CategoryAttribute
4         {
5                 public SRCategoryAttribute (string category)
6                         : base(category)
7                 {
8                 }
9         }
10 }