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

13 lines
395 B
C#
Raw Normal View History

2023-08-28 05:28:14 +00:00
namespace BotSharp.Plugin.Mongo.Collections;
public class AgentCollection : 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 Functions { get; set; }
public string Instruction { get; set; }
public List<string> Routes { 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; }
}