using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wabbajack.Common.StatusFeed { /// /// Defines a message that requires user interaction. The user must perform some action /// or make a choice. /// public interface IUserIntervention : IStatusMessage { /// /// The user didn't make a choice, so this action should be aborted /// void Cancel(); } }