BotSharp/BotSharp.Platform.Abstraction/IContextStorage.cs
haiping008 3c7c3c183b add ContextStorageFactory
persist context to file
2018-12-07 16:57:26 -06:00

13 lines
256 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace BotSharp.Platform.Abstraction
{
public interface IContextStorage<T>
{
Task<bool> Persist(string sessionId, T[] context);
}
}