summaryrefslogtreecommitdiff
path: root/src/SMAPI.Common/Models/ModSeachModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI.Common/Models/ModSeachModel.cs')
-rw-r--r--src/SMAPI.Common/Models/ModSeachModel.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/SMAPI.Common/Models/ModSeachModel.cs b/src/SMAPI.Common/Models/ModSeachModel.cs
index 3f69f0ae..13b05d2d 100644
--- a/src/SMAPI.Common/Models/ModSeachModel.cs
+++ b/src/SMAPI.Common/Models/ModSeachModel.cs
@@ -17,10 +17,12 @@ namespace StardewModdingAPI.Common.Models
** Public methods
*********/
/// <summary>Construct an empty instance.</summary>
- /// <remarks>This constructed is needed for JSON deserialisation.</remarks>
- public ModSearchModel() { }
+ public ModSearchModel()
+ {
+ // needed for JSON deserialising
+ }
- /// <summary>Construct an valid instance.</summary>
+ /// <summary>Construct an instance.</summary>
/// <param name="modKeys">The namespaced mod keys to search.</param>
public ModSearchModel(IEnumerable<string> modKeys)
{