LANCommander/LANCommander.Steam/Abstractions/ISteamWebApiService.cs

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);
}