BotSharp/BotSharp.Platform.Abstraction/IAgentStorageFactory.cs

12 lines
277 B
C#
Raw Normal View History

2018-10-11 13:24:50 +00:00
using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System.Threading.Tasks;
namespace BotSharp.Platform.Abstraction
{
public interface IAgentStorageFactory<TAgent> where TAgent : AgentBase
{
Task<IAgentStorage<TAgent>> Get();
}
}