12 lines
205 B
C#
12 lines
205 B
C#
|
using System.ComponentModel;
|
||
|
|
||
|
namespace System.Data
|
||
|
{
|
||
|
sealed class EntityResCategoryAttribute : CategoryAttribute
|
||
|
{
|
||
|
public EntityResCategoryAttribute (string category)
|
||
|
: base (category)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|