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