Merge pull request #1349 from martinjt/MachineKeyProtect
[mono.git] / mcs / class / System.Data.Entity / EntityResCategoryAttribute.cs
1 using System.ComponentModel;
2
3 namespace System.Data
4 {
5         sealed class EntityResCategoryAttribute : CategoryAttribute
6         {
7                 public EntityResCategoryAttribute (string category)
8                         : base (category)
9                 {
10                 }
11         }
12 }