BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Enums/AgentFuncVisMode.cs

8 lines
169 B
C#
Raw Normal View History

2025-08-13 15:32:56 +00:00
namespace BotSharp.Abstraction.Agents.Enums;
public static class AgentFuncVisMode
2025-08-13 15:32:56 +00:00
{
public const string Manual = "manual";
public const string Auto = "auto";
}