14 lines
368 B
C#
14 lines
368 B
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.ServiceModel.Activities.Dispatcher
|
||
|
{
|
||
|
enum SaveStatus
|
||
|
{
|
||
|
Locked = 0,
|
||
|
Unlocked,
|
||
|
Completed,
|
||
|
}
|
||
|
}
|