diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-18 19:23:26 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-18 19:23:26 -0400 |
commit | 3a161a30a7faa2d69ebe08938cd68f43921b4a81 (patch) | |
tree | 35e25eb7ca0132cd42421fc282b1633073fa8dc9 /src/SMAPI.Web/Framework/ConfigModels | |
parent | 5731b015a0c548ac72e0d7ce9c4153aa52da3562 (diff) | |
download | SMAPI-3a161a30a7faa2d69ebe08938cd68f43921b4a81.tar.gz SMAPI-3a161a30a7faa2d69ebe08938cd68f43921b4a81.tar.bz2 SMAPI-3a161a30a7faa2d69ebe08938cd68f43921b4a81.zip |
update for the new CurseForge API
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs index b582b2b0..ebb3618a 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs @@ -42,6 +42,9 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /// <summary>The base URL for the CurseForge API.</summary> public string CurseForgeBaseUrl { get; set; } = null!; + /// <summary>The API authentication key for the CurseForge API.</summary> + public string CurseForgeApiKey { get; set; } = null!; + /**** ** GitHub |