summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
blob: 62685e47401df67b0ec2fcc9f9b56f194ab0d0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StardewModdingAPI.Web.Framework.ConfigModels
{
    /// <summary>The site config settings.</summary>
    public class SiteConfig // must be public to pass into views
    {
        /*********
        ** Accessors
        *********/
        /// <summary>A message to show below the download button (e.g. for details on downloading a beta version), in Markdown format.</summary>
        public string? OtherBlurb { get; set; }

        /// <summary>A list of supports to credit on the main page, in Markdown format.</summary>
        public string? SupporterList { get; set; }
    }
}