diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-06 00:16:39 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-06 00:16:39 -0400 |
commit | 53a6833ab22fb41e909ed8ef50aa9262735818d9 (patch) | |
tree | be9efb2fe0e33938b5cec8b10704bb54c83c0877 /src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | |
parent | aee42562698ad3e84f781d51e8aa5017a1a589bc (diff) | |
download | SMAPI-53a6833ab22fb41e909ed8ef50aa9262735818d9.tar.gz SMAPI-53a6833ab22fb41e909ed8ef50aa9262735818d9.tar.bz2 SMAPI-53a6833ab22fb41e909ed8ef50aa9262735818d9.zip |
return file versions from Nexus in web API (#532)
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs index 9452fdf9..ae8f18d2 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs @@ -50,9 +50,12 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /// <summary>The base URL for the Nexus Mods API.</summary> public string NexusBaseUrl { get; set; } - /// <summary>The URL for a Nexus Mods API query excluding the <see cref="NexusBaseUrl"/>, where {0} is the mod ID.</summary> + /// <summary>The URL for a Nexus mod page for the user, excluding the <see cref="NexusBaseUrl"/>, where {0} is the mod ID.</summary> public string NexusModUrlFormat { get; set; } + /// <summary>The URL for a Nexus mod page to scrape for versions, excluding the <see cref="NexusBaseUrl"/>, where {0} is the mod ID.</summary> + public string NexusModScrapeUrlFormat { get; set; } + /**** ** Pastebin ****/ |