namespace StardewModdingAPI.Framework.Models { /// Contains user settings from SMAPI's JSON configuration file. internal class UserSettings { /********* ** Accessors *********/ /// Whether to enable development features. public bool DeveloperMode { get; set; } /// Whether to check if a newer version of SMAPI is available on startup. public bool CheckForUpdates { get; set; } = true; } }