18 lines
522 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// 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; }
}
}