11 lines
No EOL
324 B
C#
11 lines
No EOL
324 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using LANCommander.Steam.Models.SteamCmdNet;
|
|
|
|
namespace LANCommander.Steam.Abstractions;
|
|
|
|
public interface ISteamWebApiService
|
|
{
|
|
public Task<AppInfo> GetAppInfo(uint appId);
|
|
public Task<IEnumerable<GameSearchResult>> SearchGamesAsync(string keyword);
|
|
} |