BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/AgentDocument.cs

22 lines
838 B
C#
Raw Normal View History

2023-09-18 23:14:24 +00:00
using BotSharp.Plugin.MongoStorage.Models;
2023-09-09 21:44:25 +00:00
2023-09-01 22:33:36 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
2023-08-28 05:28:14 +00:00
public class AgentDocument : MongoBase
2023-08-26 04:41:01 +00:00
{
2023-08-28 05:28:14 +00:00
public string Name { get; set; }
public string Description { get; set; }
public string Instruction { get; set; }
public List<AgentTemplateMongoElement> Templates { get; set; }
public List<FunctionDefMongoElement> Functions { get; set; }
public List<AgentResponseMongoElement> Responses { get; set; }
public List<string> Samples { get; set; }
2023-09-04 15:15:11 +00:00
public bool IsPublic { get; set; }
2023-09-18 23:14:24 +00:00
public bool AllowRouting { get; set; }
public bool Disabled { get; set; }
public List<string> Profiles { get; set; }
2023-09-19 18:20:41 +00:00
public List<RoutingRuleMongoElement> RoutingRules { get; set; }
2023-08-26 04:41:01 +00:00
2023-08-28 05:28:14 +00:00
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}