mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
490 B
C#
18 lines
490 B
C#
|
namespace Wabbajack.DTOs.Interventions;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Defines a message that requires user interaction. The user must perform some action
|
||
|
/// or make a choice.
|
||
|
/// </summary>
|
||
|
public interface IUserIntervention
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The user didn't make a choice, so this action should be aborted
|
||
|
/// </summary>
|
||
|
void Cancel();
|
||
|
|
||
|
/// <summary>
|
||
|
/// Whether the interaction has been handled and no longer needs attention
|
||
|
/// </summary>
|
||
|
bool Handled { get; }
|
||
|
}
|