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

8 lines
195 B
C#
Raw Normal View History

2023-10-23 20:33:24 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
2023-12-01 16:36:34 +00:00
public class ExecutionLogCollection : MongoBase
2023-10-23 20:33:24 +00:00
{
public string ConversationId { get; set; }
public List<string> Logs { get; set; }
}