BotSharp/BotSharp.Platform.Abstraction/IContextStorageFactory.cs

12 lines
240 B
C#
Raw Normal View History

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