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