summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/SmapiInfoConfig.cs
blob: d69fabb317f3a7d8d7e28866f30e640cb37fd6df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The update-check config for SMAPI's own update checks.</summary>
    internal class SmapiInfoConfig
    {
        /// <summary>The mod ID used for SMAPI update checks.</summary>
        public string ID { get; set; }

        /// <summary>The default update key used for SMAPI update checks.</summary>
        public string DefaultUpdateKey { get; set; }

        /// <summary>The update keys to add for SMAPI update checks when the player has a beta version installed.</summary>
        public string[] AddBetaUpdateKeys { get; set; }
    }
}