Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EntityResDescriptionAttribute.cs « System.Data.Entity « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de58f045739cae82d54fd7128c09274154c91966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.ComponentModel;

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