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

14 lines
439 B
C#
Raw Normal View History

2024-02-04 05:42:13 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class AgentTaskDocument : MongoBase
{
public string Name { get; set; }
public string? Description { get; set; }
public string Content { get; set; }
public bool Enabled { get; set; }
public string AgentId { get; set; }
2024-02-05 00:38:00 +00:00
public string? DirectAgentId { get; set; }
2024-02-04 05:42:13 +00:00
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}