Files
TenWholeYears.Server/RecNet.Application/Common/Interfaces/ISteamAuthService.cs

11 lines
256 B
C#

using RecNet.Application.Common.Steam;
namespace RecNet.Application.Common.Interfaces;
public interface ISteamAuthService
{
Task<SteamAuthResult> AuthorizeAsync(
string ticket,
uint appId,
CancellationToken ct = default);
}