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
|
|
|
|
|
|
{
|
2018-12-07 22:57:26 +00:00
|
|
|
|
IAgentStorage<TAgent> Get();
|
2018-10-11 13:24:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|