23 lines
388 B
C#
23 lines
388 B
C#
|
|
namespace BotSharp.Abstraction.Agents.Models;
|
||
|
|
|
||
|
|
public class AgentCodeScript
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string Content { get; set; }
|
||
|
|
|
||
|
|
public AgentCodeScript()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public AgentCodeScript(string name, string content)
|
||
|
|
{
|
||
|
|
Name = name;
|
||
|
|
Content = content;
|
||
|
|
}
|
||
|
|
|
||
|
|
public override string ToString()
|
||
|
|
{
|
||
|
|
return Name;
|
||
|
|
}
|
||
|
|
}
|