2021-07-22 16:12:27 -05:00
|
|
|
namespace Props.Options
|
|
|
|
{
|
|
|
|
public class ModulesOptions
|
|
|
|
{
|
|
|
|
public const string Modules = "Modules";
|
2021-08-07 17:20:46 -05:00
|
|
|
public string ModulesDir { get; set; }
|
|
|
|
public string ModuleDataDir { get; set; }
|
2021-07-22 16:12:27 -05:00
|
|
|
public bool RecursiveLoad { get; set; }
|
|
|
|
public string ShopRegex { get; set; }
|
|
|
|
}
|
|
|
|
}
|