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