blob: d9ac9f02a0a3fe3a10aac6f054e4e72b81432eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// <summary>The config settings for mod compatibility list.</summary>
internal class ModCompatibilityListConfig
{
/*********
** Accessors
*********/
/// <summary>The number of minutes data from the wiki should be cached before refetching it.</summary>
public int CacheMinutes { get; set; }
}
}
|