BotSharp/src/Infrastructure/BotSharp.Abstraction/Instructs/Settings/InstructionSettings.cs
2025-03-21 15:00:53 -05:00

12 lines
299 B
C#

namespace BotSharp.Abstraction.Instructs.Settings;
public class InstructionSettings
{
public InstructionLogSetting Logging { get; set; } = new();
}
public class InstructionLogSetting
{
public bool Enabled { get; set; } = true;
public List<string> ExcludedAgentIds { get; set; } = [];
}