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