namespace StardewModdingAPI.Web.Framework.ConfigModels
{
/// The site config settings.
public class SiteConfig // must be public to pass into views
{
/*********
** Accessors
*********/
/// A message to show below the download button (e.g. for details on downloading a beta version), in Markdown format.
public string? OtherBlurb { get; set; }
/// A list of supports to credit on the main page, in Markdown format.
public string? SupporterList { get; set; }
}
}