mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
19 lines
425 B
C#
19 lines
425 B
C#
using Wabbajack.DTOs.Interventions;
|
|
|
|
namespace Wabbajack.Networking.Steam.UserInterventions;
|
|
|
|
public class GetUsernameAndPassword : IUserIntervention
|
|
{
|
|
public void Cancel()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Handled { get; }
|
|
public CancellationToken Token { get; }
|
|
|
|
public void SetException(Exception exception)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |