Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Data.Entity / System / Data / Objects / DataClasses / EdmEntityTypeAttribute.cs
1 //---------------------------------------------------------------------
2 // <copyright file="EntityTypeAttribute.cs" company="Microsoft">
3 //      Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 //
6 // @owner       Microsoft
7 // @backupOwner Microsoft
8 //---------------------------------------------------------------------
9 using System;
10
11 namespace System.Data.Objects.DataClasses
12 {
13     /// <summary>
14     /// Attribute identifying the Edm base class
15     /// </summary>
16     [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
17     [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
18     public sealed class EdmEntityTypeAttribute : EdmTypeAttribute
19     {
20         /// <summary>
21         /// Attribute identifying the Edm base class
22         /// </summary>
23         public EdmEntityTypeAttribute()
24         {
25         }
26     }
27 }