summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI.Web/Models/ModSearchModel.cs
blob: eb9ac920071479f547f29e3570e804178d1882bb (plain)
1
2
3
4
5
6
7
8
9
namespace StardewModdingAPI.Web.Models
{
    /// <summary>The search criteria for a mod.</summary>
    public class ModSearchModel
    {
        /// <summary>The Nexus Mods ID (if any).</summary>
        public int? NexusID { get; set; }
    }
}