12 lines
261 B
C#
12 lines
261 B
C#
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;
|
|
}
|
|
}
|