summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-03 23:06:42 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-12-03 23:06:42 -0500
commit8ddb60cee636cc17291100c316df4786eb3bb448 (patch)
treeae86b8f6ccc482a913aeabe04b9a72dd2fa5d02e /src/SMAPI.Web/Framework
parent2b1f607d41b3d4d071c0db0671dbc99b6982909f (diff)
downloadSMAPI-8ddb60cee636cc17291100c316df4786eb3bb448.tar.gz
SMAPI-8ddb60cee636cc17291100c316df4786eb3bb448.tar.bz2
SMAPI-8ddb60cee636cc17291100c316df4786eb3bb448.zip
move supporter list into environment config
Diffstat (limited to 'src/SMAPI.Web/Framework')
-rw-r--r--src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
index d379c423..43969f51 100644
--- a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
+++ b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs
@@ -11,5 +11,8 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels
/// <summary>A short sentence shown under the beta download button, if any.</summary>
public string BetaBlurb { get; set; }
+
+ /// <summary>A list of supports to credit on the main page, in Markdown format.</summary>
+ public string SupporterList { get; set; }
}
}