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

12 lines
220 B
C#
Raw Normal View History

using System.ComponentModel;
namespace System.Data
{
sealed class EntityResDescriptionAttribute : DescriptionAttribute
{
public EntityResDescriptionAttribute (string description)
: base (description)
{
}
}
}