Sic04/FrameworkLocal/UIClient/Caliburn.Micro/Core/CoroutineExecutionContext.cs

22 lines
576 B
C#

namespace Caliburn.Micro.Core {
/// <summary>
/// The context used during the execution of a Coroutine.
/// </summary>
public class CoroutineExecutionContext {
/// <summary>
/// The source from which the message originates.
/// </summary>
public object Source;
/// <summary>
/// The view associated with the target.
/// </summary>
public object View;
/// <summary>
/// The instance on which the action is invoked.
/// </summary>
public object Target;
}
}