namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The config settings for mod update checks.
internal class ModUpdateCheckConfig
{
/*********
** Accessors
*********/
/// The number of minutes successful update checks should be cached before refetching them.
public int SuccessCacheMinutes { get; set; }
/// The number of minutes failed update checks should be cached before refetching them.
public int ErrorCacheMinutes { get; set; }
}
}