summaryrefslogtreecommitdiff
path: root/src/SMAPI.Internal/Models/ModSeachModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Internal/Models/ModSeachModel.cs')
-rw-r--r--src/SMAPI.Internal/Models/ModSeachModel.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/SMAPI.Internal/Models/ModSeachModel.cs b/src/SMAPI.Internal/Models/ModSeachModel.cs
deleted file mode 100644
index fac72135..00000000
--- a/src/SMAPI.Internal/Models/ModSeachModel.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System.Collections.Generic;
-using System.Linq;
-
-namespace StardewModdingAPI.Internal.Models
-{
- /// <summary>Specifies mods whose update-check info to fetch.</summary>
- internal class ModSearchModel
- {
- /*********
- ** Accessors
- *********/
- /// <summary>The namespaced mod keys to search.</summary>
- public string[] ModKeys { get; set; }
-
- /// <summary>Whether to allow non-semantic versions, instead of returning an error for those.</summary>
- public bool AllowInvalidVersions { get; set; }
-
-
- /*********
- ** Public methods
- *********/
- /// <summary>Construct an empty instance.</summary>
- public ModSearchModel()
- {
- // needed for JSON deserialising
- }
-
- /// <summary>Construct an instance.</summary>
- /// <param name="modKeys">The namespaced mod keys to search.</param>
- /// <param name="allowInvalidVersions">Whether to allow non-semantic versions, instead of returning an error for those.</param>
- public ModSearchModel(IEnumerable<string> modKeys, bool allowInvalidVersions)
- {
- this.ModKeys = modKeys.ToArray();
- this.AllowInvalidVersions = allowInvalidVersions;
- }
- }
-}