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

8 lines
194 B
C#
Raw Normal View History

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