//---------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// @owner [....]
// @backupOwner [....]
//---------------------------------------------------------------------
using System;
namespace System.Data.EntityModel.SchemaObjectModel
{
///
/// The possible operations for an On<Operation> element
///
enum Operation
{
///
/// the delete operation
///
Delete,
}
}