File: System\Data\Metadata\Edm\AttributeKind.cs
Project: ndp\fx\src\DataEntity\System.Data.Entity.csproj (System.Data.Entity)
//---------------------------------------------------------------------
// <copyright file="AttributeKind.cs" company="Microsoft">
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//
// @owner       jeffreed
// @backupOwner leil
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
 
namespace System.Data.Metadata.Edm
{
    /// <summary>
    /// Kind of Item Attribute
    /// </summary>
    public enum PropertyKind
    {
        System,
        Extended
    }
}