namespace StardewModdingAPI.Web.Framework.ConfigModels { /// The site config settings. public class SiteConfig // must be public to pass into views { /********* ** Accessors *********/ /// The root URL for the app. public string RootUrl { get; set; } /// The root URL for the log parser. public string LogParserUrl { get; set; } /// Whether to show SMAPI beta versions on the main page, if any. public bool EnableSmapiBeta { get; set; } } }