BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/PluginLoaderSettings.cs
2023-10-10 23:11:06 -05:00

7 lines
135 B
C#

namespace BotSharp.Abstraction.Plugins;
public class PluginSettings
{
public string[] Assemblies { get; set; } = new string[0];
}