12 lines
220 B
C#
12 lines
220 B
C#
using System.ComponentModel;
|
|
|
|
namespace System.Data
|
|
{
|
|
sealed class EntityResDescriptionAttribute : DescriptionAttribute
|
|
{
|
|
public EntityResDescriptionAttribute (string description)
|
|
: base (description)
|
|
{
|
|
}
|
|
}
|
|
} |