8 lines
211 B
C#
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; } = [];
|
|
}
|