11 lines
311 B
C#
11 lines
311 B
C#
namespace Props.Options
|
|
{
|
|
public class ModulesOptions
|
|
{
|
|
public const string Modules = "Modules";
|
|
public string ModulesDir { get; set; }
|
|
public string ModuleDataDir { get; set; }
|
|
public bool RecursiveLoad { get; set; }
|
|
public string ShopRegex { get; set; }
|
|
}
|
|
} |