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

8 lines
211 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class ExecutionLogDocument : MongoBase
{
public string ConversationId { get; set; } = default!;
public List<string> Logs { get; set; } = [];
}