namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The update-check config for SMAPI's own update checks.
internal class SmapiInfoConfig
{
/// The mod ID used for SMAPI update checks.
public string ID { get; set; }
/// The default update key used for SMAPI update checks.
public string DefaultUpdateKey { get; set; }
/// The update keys to add for SMAPI update checks when the player has a beta version installed.
public string[] AddBetaUpdateKeys { get; set; }
}
}