namespace BotSharp.Plugin.MongoStorage.Collections; public class AgentCollection : MongoBase { public string Name { get; set; } public string Description { get; set; } public string Instruction { get; set; } public List Functions { get; set; } public List Responses { get; set; } public DateTime CreatedTime { get; set; } public DateTime UpdatedTime { get; set; } }