//---------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner jeffreed
// @backupOwner leil
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace System.Data.Metadata.Edm
{
///
/// Represents the list of possible actions for delete operation
///
public enum OperationAction
{
///
/// no action
///
None,
///
/// Cascade to other ends
///
Cascade,
///
/// Do not allow if other ends are not empty
///
Restrict,
}
}