18 lines
329 B
C#
18 lines
329 B
C#
namespace BotSharp.Abstraction.Conversations.Models;
|
|
|
|
public class ConversationState : Dictionary<string, StateKeyValue>
|
|
{
|
|
public ConversationState()
|
|
{
|
|
|
|
}
|
|
|
|
public ConversationState(List<StateKeyValue> pairs)
|
|
{
|
|
foreach (var pair in pairs)
|
|
{
|
|
this[pair.Key] = pair;
|
|
}
|
|
}
|
|
}
|