props/Props/Options/SearchOptions.cs

9 lines
162 B
C#
Raw Normal View History

namespace Props.Options
{
public class SearchOptions
{
public const string Search = "Search";
public int MaxResults { get; set; }
}
}