BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/AgentTaskDocument.cs
2024-02-04 18:38:00 -06:00

14 lines
439 B
C#

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; }
public string? DirectAgentId { get; set; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}