15 lines
367 B
C#
Raw Normal View History

//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel.Activities.Description
{
enum DurableConsistencyScope
{
Global = 0,
InstanceGlobalKeyLocal,
Local,
}
}