BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/AgentKnowledgeBase.cs
2024-12-29 21:49:38 -06:00

26 lines
491 B
C#

namespace BotSharp.Abstraction.Agents.Models;
public class AgentKnowledgeBase
{
public string Name { get; set; }
public string Type { get; set; }
public bool Disabled { get; set; }
public AgentKnowledgeBase()
{
}
public AgentKnowledgeBase(string name, string type, bool enabled)
{
Name = name;
Type = type;
Disabled = enabled;
}
public override string ToString()
{
return Name ?? string.Empty;
}
}