BotSharp/BotSharp.Core/IAgentStorageFactory.cs

12 lines
261 B
C#
Raw Normal View History

using BotSharp.Platform.Abstraction;
using BotSharp.Platform.Models;
using System.Threading.Tasks;
namespace BotSharp.Core
{
public interface IAgentStorageFactory
{
Task<IAgentStorage<TAgent>> Get<TAgent>() where TAgent : AgentBase;
}
}