BotSharp/BotSharp.Platform.Abstraction/IAgentStorageFactory.cs
2018-10-11 08:24:50 -05:00

12 lines
277 B
C#

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();
}
}