//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Activities.Statements
{
using System.Activities;
///
/// TransitionData is used by InternalTransition to store data from Transition.
///
sealed class TransitionData
{
///
/// Gets or sets Action of transition.
///
public Activity Action
{
get;
set;
}
///
/// Gets or sets Condition of transition.
/// If condition is null, it means it's an unconditional transition.
///
public Activity Condition
{
get;
set;
}
///
/// Gets or sets To of transition, which represent the target InternalState.
///
public InternalState To
{
get;
set;
}
}
}