10 lines
258 B
C#
10 lines
258 B
C#
using BotSharp.Plugin.MongoStorage.Models;
|
|
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
|
|
|
public class ConversationDialogDocument : MongoBase
|
|
{
|
|
public string ConversationId { get; set; }
|
|
public List<DialogMongoElement> Dialogs { get; set; }
|
|
}
|