Add support for WinAuth, #144

This commit is contained in:
JustArchi
2016-03-12 05:58:51 +01:00
parent d08462745a
commit 4710d9c1eb
3 changed files with 80 additions and 25 deletions

View File

@@ -35,6 +35,8 @@ using System.Threading.Tasks;
namespace ArchiSteamFarm {
internal static class Program {
internal enum EUserInputType : byte {
Unknown,
DeviceID,
Login,
Password,
PhoneNumber,
@@ -281,6 +283,9 @@ namespace ArchiSteamFarm {
lock (ConsoleLock) {
ConsoleIsBusy = true;
switch (userInputType) {
case EUserInputType.DeviceID:
Console.Write("<" + botLogin + "> Please enter your Device ID (including \"android:\"): ");
break;
case EUserInputType.Login:
Console.Write("<" + botLogin + "> Please enter your login: ");
break;