diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-06-30 01:38:45 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 16:00:01 -0400 |
commit | aa154319669a130c2b419540aaf5e9a5baa6db97 (patch) | |
tree | 224de5629a4f8883acc195e50d22c1c0097a6bb3 /src/SMAPI.Web/ViewModels/ModModel.cs | |
parent | 01221ea66f2eef7ffd5ae846d1f9b99249674080 (diff) | |
download | SMAPI-aa154319669a130c2b419540aaf5e9a5baa6db97.tar.gz SMAPI-aa154319669a130c2b419540aaf5e9a5baa6db97.tar.bz2 SMAPI-aa154319669a130c2b419540aaf5e9a5baa6db97.zip |
remove 'SMAPI 3.0 ready' API fields (#638)
Diffstat (limited to 'src/SMAPI.Web/ViewModels/ModModel.cs')
-rw-r--r-- | src/SMAPI.Web/ViewModels/ModModel.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/SMAPI.Web/ViewModels/ModModel.cs b/src/SMAPI.Web/ViewModels/ModModel.cs index ae81acf5..8668f67b 100644 --- a/src/SMAPI.Web/ViewModels/ModModel.cs +++ b/src/SMAPI.Web/ViewModels/ModModel.cs @@ -31,12 +31,6 @@ namespace StardewModdingAPI.Web.ViewModels /// <summary>The compatibility status for the beta version of the game.</summary> public ModCompatibilityModel BetaCompatibility { get; set; } - /// <summary>Whether the mod is ready for the upcoming SMAPI 3.0.</summary> - public string Smapi3Status { get; set; } - - /// <summary>A URL related to the <see cref="Smapi3Status"/>.</summary> - public string Smapi3Url { get; set; } - /// <summary>Links to the available mod pages.</summary> public ModLinkModel[] ModPages { get; set; } @@ -65,8 +59,6 @@ namespace StardewModdingAPI.Web.ViewModels this.SourceUrl = this.GetSourceUrl(entry); this.Compatibility = new ModCompatibilityModel(entry.Compatibility); this.BetaCompatibility = entry.BetaCompatibility != null ? new ModCompatibilityModel(entry.BetaCompatibility) : null; - this.Smapi3Status = entry.Smapi3Status.ToString().ToLower(); - this.Smapi3Url = entry.Smapi3Url; this.ModPages = this.GetModPageUrls(entry).ToArray(); this.Warnings = entry.Warnings; this.Slug = entry.Anchor; |