blob: 852ea4390ca59ff5730d01e627be3865926c92b0 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace StardewModdingAPI.Web.Models
{
/// <summary>The mod update search criteria.</summary>
public class ModSearchModel
{
/// <summary>The namespaced mod keys to search.</summary>
public string[] ModKeys { get; set; }
}
}
|