namespace StardewModdingAPI.Web.Framework.ConfigModels { /// The config settings for the API clients. internal class ApiClientsConfig { /********* ** Accessors *********/ /**** ** Generic ****/ /// The user agent for API clients, where {0} is the SMAPI version. public string UserAgent { get; set; } /**** ** Chucklefish ****/ /// The base URL for the Chucklefish mod site. public string ChucklefishBaseUrl { get; set; } /// The URL for a mod page on the Chucklefish mod site excluding the , where {0} is the mod ID. public string ChucklefishModPageUrlFormat { get; set; } /**** ** GitHub ****/ /// The base URL for the GitHub API. public string GitHubBaseUrl { get; set; } /// The URL for a GitHub API query for the latest stable release, excluding the , where {0} is the organisation and project name. public string GitHubStableReleaseUrlFormat { get; set; } /// The URL for a GitHub API query for the latest release (including prerelease), excluding the , where {0} is the organisation and project name. public string GitHubAnyReleaseUrlFormat { get; set; } /// The Accept header value expected by the GitHub API. public string GitHubAcceptHeader { get; set; } /// The username with which to authenticate to the GitHub API (if any). public string GitHubUsername { get; set; } /// The password with which to authenticate to the GitHub API (if any). public string GitHubPassword { get; set; } /**** ** Nexus Mods ****/ /// The base URL for the Nexus Mods API. public string NexusBaseUrl { get; set; } /// The URL for a Nexus mod page for the user, excluding the , where {0} is the mod ID. public string NexusModUrlFormat { get; set; } /// The URL for a Nexus mod page to scrape for versions, excluding the , where {0} is the mod ID. public string NexusModScrapeUrlFormat { get; set; } /**** ** Pastebin ****/ /// The base URL for the Pastebin API. public string PastebinBaseUrl { get; set; } /// The user key used to authenticate with the Pastebin API. public string PastebinUserKey { get; set; } /// The developer key used to authenticate with the Pastebin API. public string PastebinDevKey { get; set; } } }