BotSharp/BotSharp.Core/Abstractions/IContextStorageFactory.cs
2019-03-16 19:55:55 -05:00

10 lines
172 B
C#

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