diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-08-04 03:28:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-14 19:00:41 -0400 |
commit | 3ba567eaddeaa0bb2bdd749b56e0601d1cf65a25 (patch) | |
tree | 61d5bc41560246da5ce727f47287b6730b525fad /src/SMAPI.Web/Framework/ConfigModels | |
parent | c86db64880d52630c372aa24f7aadf0036fb3fcf (diff) | |
download | SMAPI-3ba567eaddeaa0bb2bdd749b56e0601d1cf65a25.tar.gz SMAPI-3ba567eaddeaa0bb2bdd749b56e0601d1cf65a25.tar.bz2 SMAPI-3ba567eaddeaa0bb2bdd749b56e0601d1cf65a25.zip |
add JSON validator with initial support for manifest format (#654)
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs | 3 |
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 d89a4260..bc6e868a 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs @@ -12,6 +12,9 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /// <summary>The root URL for the log parser.</summary> public string LogParserUrl { get; set; } + /// <summary>The root URL for the JSON validator.</summary> + public string JsonValidatorUrl { get; set; } + /// <summary>The root URL for the mod list.</summary> public string ModListUrl { get; set; } |