diff --git a/SteamStorefrontAPI/Endpoints/AppDetails.cs b/SteamStorefrontAPI/Endpoints/AppDetails.cs index fb3bbab..2f361d5 100644 --- a/SteamStorefrontAPI/Endpoints/AppDetails.cs +++ b/SteamStorefrontAPI/Endpoints/AppDetails.cs @@ -16,6 +16,7 @@ namespace SteamStorefrontAPI private static HttpClient client = new HttpClient(); private const string steamBaseUri = "http://store.steampowered.com/api/appdetails"; + /// /// Retrieves details for the specified application via an asynchronous operation. /// Steam App ID. public static async Task GetAsync(int AppId) @@ -23,6 +24,7 @@ namespace SteamStorefrontAPI return await GetAsync(AppId, "", ""); } + /// /// Retrieves details for the specified application via an asynchronous operation. /// Steam App ID. /// Two letter country code to customise currency and date values.