namespace StardewModdingAPI.Web.Framework.ConfigModels { /// The config settings for mod update checks. public class ModUpdateCheckConfig { /// The number of minutes update checks should be cached before refetching them. public int CacheMinutes { get; set; } /// The repository key for Nexus Mods. public string NexusKey { get; set; } /// The user agent for the Nexus Mods API client. public string NexusUserAgent { get; set; } /// The base URL for the Nexus Mods API. public string NexusBaseUrl { get; set; } /// The URL for a Nexus Mods API query excluding the , where {0} is the mod ID. public string NexusModUrlFormat { get; set; } } }