8 lines
194 B
C#
8 lines
194 B
C#
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
||
|
|
|
||
|
|
public class ExectionLogCollection : MongoBase
|
||
|
|
{
|
||
|
|
public string ConversationId { get; set; }
|
||
|
|
public List<string> Logs { get; set; }
|
||
|
|
}
|