BotSharp/BotSharp.Core/Abstractions/IContextStorageFactory.cs

10 lines
172 B
C#
Raw Normal View History

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