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

12 lines
240 B
C#

using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System.Threading.Tasks;
namespace BotSharp.Platform.Abstraction
{
public interface IContextStorageFactory<T>
{
IContextStorage<T> Get();
}
}