BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/AgentCodeScript.cs

19 lines
346 B
C#
Raw Normal View History

2025-09-30 20:26:32 +00:00
namespace BotSharp.Abstraction.Agents.Models;
public class AgentCodeScript
{
2025-09-30 22:28:35 +00:00
public string Id { get; set; }
public string AgentId { get; set; }
2025-09-30 20:26:32 +00:00
public string Name { get; set; }
public string Content { get; set; }
public AgentCodeScript()
{
}
public override string ToString()
{
return Name;
}
}