linux-packaging-mono/mcs/class/System.Data.Entity/EntityResCategoryAttribute.cs

12 lines
205 B
C#
Raw Normal View History

using System.ComponentModel;
namespace System.Data
{
sealed class EntityResCategoryAttribute : CategoryAttribute
{
public EntityResCategoryAttribute (string category)
: base (category)
{
}
}
}