24 lines
644 B
C#
Raw Normal View History

//---------------------------------------------------------------------
// <copyright file="RelationshipKind.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
namespace System.Data.Objects.DataClasses
{
/// <summary>
/// Identifies the kind of a relationship
/// </summary>
public enum RelationshipKind
{
/// <summary>
/// The relationship is an Association
/// </summary>
Association = 0,
}
}