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

6 lines
171 B
C#

namespace SteamLib.Core.Interfaces;
public interface ISmsCodeProvider
{
public Task<int> GetSmsCode(ILoginConsumer caller, long? phoneNumber, string? phoneHint);
}