namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The site config settings.
public class SiteConfig // must be public to pass into views
{
/*********
** Accessors
*********/
/// Whether to show SMAPI beta versions on the main page, if any.
public bool BetaEnabled { get; set; }
/// A short sentence shown under the beta download button, if any.
public string BetaBlurb { get; set; }
/// A list of supports to credit on the main page, in Markdown format.
public string SupporterList { get; set; }
}
}