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

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

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