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