diff --git a/Wabbajack.DTOs/Interventions/IUserIntervention.cs b/Wabbajack.DTOs/Interventions/IUserIntervention.cs index 3c4bc1a0..89c24cd1 100644 --- a/Wabbajack.DTOs/Interventions/IUserIntervention.cs +++ b/Wabbajack.DTOs/Interventions/IUserIntervention.cs @@ -3,16 +3,11 @@ using System.Threading; namespace Wabbajack.DTOs.Interventions; - -public interface IUserIntervention -{ - -} /// /// Defines a message that requires user interaction. The user must perform some action /// or make a choice. /// -public interface IUserIntervention : IUserIntervention +public interface IUserIntervention { /// /// The user didn't make a choice, so this action should be aborted @@ -30,4 +25,4 @@ public interface IUserIntervention : IUserIntervention public CancellationToken Token { get; } void SetException(Exception exception); -} \ No newline at end of file +}