summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/ModCompatibilityListConfig.cs
blob: 24b540cd621df86a4ed580507a7ba9d8e3a50dbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The config settings for the mod compatibility list.</summary>
    internal class ModCompatibilityListConfig
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The number of minutes before which wiki data should be considered old.</summary>
        public int StaleMinutes { get; set; }
    }
}