summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Web/Models/ModSearchModel.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-09-22 00:47:46 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-09-22 00:47:46 -0400
commit2c02dfe45a6d1252bfef557db8f39f97e57d3d19 (patch)
tree4fb8b5759d56ba6a62a452e09180ede280228b3b /src/StardewModdingAPI.Web/Models/ModSearchModel.cs
parentedbc3ef3c08909486d6c4b8797f0e3c2934854fa (diff)
downloadSMAPI-2c02dfe45a6d1252bfef557db8f39f97e57d3d19.tar.gz
SMAPI-2c02dfe45a6d1252bfef557db8f39f97e57d3d19.tar.bz2
SMAPI-2c02dfe45a6d1252bfef557db8f39f97e57d3d19.zip
rewrite to make update-check logic vendor-agnostic (#336)
Diffstat (limited to 'src/StardewModdingAPI.Web/Models/ModSearchModel.cs')
-rw-r--r--src/StardewModdingAPI.Web/Models/ModSearchModel.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StardewModdingAPI.Web/Models/ModSearchModel.cs b/src/StardewModdingAPI.Web/Models/ModSearchModel.cs
index eb9ac920..852ea439 100644
--- a/src/StardewModdingAPI.Web/Models/ModSearchModel.cs
+++ b/src/StardewModdingAPI.Web/Models/ModSearchModel.cs
@@ -1,9 +1,9 @@
namespace StardewModdingAPI.Web.Models
{
- /// <summary>The search criteria for a mod.</summary>
+ /// <summary>The mod update search criteria.</summary>
public class ModSearchModel
{
- /// <summary>The Nexus Mods ID (if any).</summary>
- public int? NexusID { get; set; }
+ /// <summary>The namespaced mod keys to search.</summary>
+ public string[] ModKeys { get; set; }
}
}