using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Modules { /// /// Module configuration . /// public class ModuleOptions { /// /// Module name /// public string Name { get; set; } /// /// Module type. /// public string Type { get; set; } /// /// Module path /// public string Path { get; set; } } }