Files
Nebula-Auth/SteamLibForked/Core/Interfaces/ISteamGuardProvider.cs
T
2024-02-01 01:21:56 +02:00

7 lines
189 B
C#

namespace SteamLib.Core.Interfaces;
public interface ISteamGuardProvider
{
public int MaxRetryCount { get; }
public ValueTask<string> GetSteamGuardCode(ILoginConsumer caller);
}