10 lines
259 B
C#
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; }
|
||
|
}
|
||
|
}
|