18 lines
522 B
C#
18 lines
522 B
C#
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.ServiceModel.Activities
|
||
|
{
|
||
|
public sealed class ReceiveSettings
|
||
|
{
|
||
|
public ReceiveSettings()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public string Action { get; set; }
|
||
|
public bool CanCreateInstance { get; set; }
|
||
|
public string OwnerDisplayName { get; set; }
|
||
|
}
|
||
|
}
|