//--------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner jeffreed // @backupOwner anpete //--------------------------------------------------------------------- using System; using System.Collections.Generic; namespace System.Data.EntityModel.SchemaObjectModel { /// /// Abstracts the properties of an End element in a relationship /// internal interface IRelationshipEnd { /// /// Name of the End /// string Name { get; } /// /// Type of the End /// SchemaEntityType Type { get; } /// /// Multiplicity of the End /// System.Data.Metadata.Edm.RelationshipMultiplicity? Multiplicity { get; set; } /// /// The On<Operation>s defined for the End /// ICollection Operations { get; } } }