11 lines
256 B
C#
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);
|
|
} |