namespace StardewModdingAPI.Framework.Models { /// The SMAPI configuration settings. internal class SConfig { /******** ** Accessors ********/ /// Whether to enable development features. public bool DeveloperMode { get; set; } /// Whether to check for newer versions of SMAPI and mods on startup. public bool CheckForUpdates { get; set; } /// SMAPI's GitHub project name, used to perform update checks. public string GitHubProjectName { get; set; } /// The base URL for SMAPI's web API, used to perform update checks. public string WebApiBaseUrl { get; set; } /// Whether SMAPI should log more information about the game context. public bool VerboseLogging { get; set; } /// Extra metadata about mods. public ModDataRecord[] ModData { get; set; } } }