BotSharp/src/Infrastructure/BotSharp.Abstraction/Plugins/PluginLoaderSettings.cs
2025-08-06 11:27:26 -05:00

7 lines
135 B
C#

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