props/Props/Options/ModulesOptions.cs
Harrison Deng c94ea4a624 Added primitive search mechanism in backend.
Began implementing search mechanism for frontend.
2021-08-05 01:22:19 -05:00

10 lines
259 B
C#

namespace Props.Options
{
public class ModulesOptions
{
public const string Modules = "Modules";
public string ShopsDir { get; set; }
public bool RecursiveLoad { get; set; }
public string ShopRegex { get; set; }
}
}