mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
11 lines
250 B
C#
11 lines
250 B
C#
namespace Lantean.QBTMud.Models
|
|
{
|
|
public class SearchForm
|
|
{
|
|
public string? SearchText { get; set; }
|
|
|
|
public string SelectedPlugin { get; set; } = "all";
|
|
|
|
public string SelectedCategory { get; set; } = "all";
|
|
}
|
|
} |