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

EdmComplexTypeAttribute.cs « DataClasses « Objects « Data « System « System.Data.Entity « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05f2fcc71834b56d510d809c44585874fb06d9f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//---------------------------------------------------------------------
// <copyright file="EdmComplexTypeAttribute.cs" company="Microsoft">
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//
// @owner       Microsoft
// @backupOwner Microsoft
//---------------------------------------------------------------------

namespace System.Data.Objects.DataClasses
{
    using System;

    /// <summary>
    /// attribute for complex types
    /// </summary>
    [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
    [System.AttributeUsage(AttributeTargets.Class)]
    public sealed class EdmComplexTypeAttribute: EdmTypeAttribute
    {
        /// <summary>
        /// attribute for complex types
        /// </summary>
        public EdmComplexTypeAttribute()
        {
        }
    }
}