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