summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/SmapiInfoConfig.cs
blob: a95e00481e51aac44963d3aaa689813980d3f3d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

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; } = null!;

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

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