summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/ViewModels
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-07-14 22:27:00 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 18:52:14 -0400
commit1bf399ec23368a0666203298768a4b24b63d6a88 (patch)
treea13d04ee3e99240cfb0c8c67988f761e73d68d44 /src/SMAPI.Web/ViewModels
parent48f211f5447ec7580b9f9bba63eab0ec6b1ec5c7 (diff)
downloadSMAPI-1bf399ec23368a0666203298768a4b24b63d6a88.tar.gz
SMAPI-1bf399ec23368a0666203298768a4b24b63d6a88.tar.bz2
SMAPI-1bf399ec23368a0666203298768a4b24b63d6a88.zip
add dev note field to compatibility list
Diffstat (limited to 'src/SMAPI.Web/ViewModels')
-rw-r--r--src/SMAPI.Web/ViewModels/ModModel.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/SMAPI.Web/ViewModels/ModModel.cs b/src/SMAPI.Web/ViewModels/ModModel.cs
index b57e03f8..5a343640 100644
--- a/src/SMAPI.Web/ViewModels/ModModel.cs
+++ b/src/SMAPI.Web/ViewModels/ModModel.cs
@@ -41,6 +41,9 @@ namespace StardewModdingAPI.Web.ViewModels
/// <summary>Extra metadata links (usually for open pull requests).</summary>
public Tuple<Uri, string>[] MetadataLinks { get; set; }
+ /// <summary>Special notes intended for developers who maintain unofficial updates or submit pull requests. </summary>
+ public string DevNote { get; set; }
+
/// <summary>A unique identifier for the mod that can be used in an anchor URL.</summary>
public string Slug { get; set; }
@@ -66,6 +69,7 @@ namespace StardewModdingAPI.Web.ViewModels
this.ModPages = this.GetModPageUrls(entry).ToArray();
this.Warnings = entry.Warnings;
this.MetadataLinks = entry.MetadataLinks;
+ this.DevNote = entry.DevNote;
this.Slug = entry.Anchor;
}