13 lines
400 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities.DurableInstancing
{
enum SuspensionStateChange
{
NoChange = 0,
SuspendInstance = 1,
UnsuspendInstance = 2
};
}