10 lines
255 B
C#
10 lines
255 B
C#
|
|
using BotSharp.Plugin.MongoStorage.Models;
|
||
|
|
|
||
|
|
namespace BotSharp.Plugin.MongoStorage.Collections;
|
||
|
|
|
||
|
|
public class ConversationStateDocument : MongoBase
|
||
|
|
{
|
||
|
|
public string ConversationId { get; set; }
|
||
|
|
public List<StateMongoElement> States { get; set; }
|
||
|
|
}
|