2018-10-05 06:39:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Modules
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Module Host configuration.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class ModulesOptions
|
|
|
|
|
|
{
|
2018-10-05 15:17:52 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Module base directory
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public String ModuleBasePath { get; set; }
|
|
|
|
|
|
|
2018-10-05 06:39:39 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// List of module configurations.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public List<ModuleOptions> Modules { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|