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

13 lines
392 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; }
public DateTime CreatedTime { get; set; }
public DateTime UpdatedTime { get; set; }
}