namespace Caliburn.Micro.Core {
    using System;
    /// 
    /// The event args for the Completed event of an .
    /// 
    public class ResultCompletionEventArgs : EventArgs {
        /// 
        /// Gets or sets the error if one occurred.
        /// 
        /// The error.
        public Exception Error;
        /// 
        /// Gets or sets a value indicating whether the result was cancelled.
        /// 
        /// true if cancelled; otherwise, false.
        public bool WasCancelled;
    }
}