Files
TenWholeYears.Server/src/RecNet.Application/Common/Interfaces/ISteamAuthService.cs
2026-06-20 17:49:44 -05:00

11 lines
258 B
C#

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