26 lines
531 B
C#
Raw Normal View History

//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.Activities
{
public class ActivityPropertyReference
{
public ActivityPropertyReference()
{
}
public string SourceProperty
{
get;
set;
}
public string TargetProperty
{
get;
set;
}
}
}