BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/PluginLoaderSettings.cs

7 lines
135 B
C#
Raw Normal View History

2023-06-17 02:42:35 +00:00
namespace BotSharp.Abstraction.Plugins;
2023-10-11 04:11:06 +00:00
public class PluginSettings
2023-06-17 02:42:35 +00:00
{
public string[] Assemblies { get; set; } = new string[0];
2023-06-17 02:42:35 +00:00
}