//---------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
namespace System.Data.EntityModel.SchemaObjectModel
{
///
/// Valid actions in an On<Operation> element
///
enum Action
{
///
/// no action
///
None,
///
/// Cascade to other ends
///
Cascade,
}
}