2019-03-17 00:55:55 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2018-12-07 22:57:26 +00:00
|
|
|
|
|
2019-03-17 00:55:55 +00:00
|
|
|
|
namespace BotSharp.Platform.Abstractions
|
2018-12-07 22:57:26 +00:00
|
|
|
|
{
|
|
|
|
|
|
public interface IContextStorageFactory<T>
|
|
|
|
|
|
{
|
|
|
|
|
|
IContextStorage<T> Get();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|