11 lines
303 B
C#
11 lines
303 B
C#
namespace Props.Options
|
|
{
|
|
public class ModulesOptions
|
|
{
|
|
public const string Modules = "Modules";
|
|
public string ShopsDir { get; set; }
|
|
public bool RecursiveLoad { get; set; }
|
|
public int MaxResults { get; set; }
|
|
public string ShopRegex { get; set; }
|
|
}
|
|
} |