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

8 lines
211 B
C#
Raw Normal View History

2023-10-23 20:33:24 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class ExecutionLogDocument : MongoBase
2023-10-23 20:33:24 +00:00
{
public string ConversationId { get; set; } = default!;
public List<string> Logs { get; set; } = [];
2023-10-23 20:33:24 +00:00
}