12 lines
271 B
C#
12 lines
271 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
|
|
{
|
|
IAgentStorage<TAgent> Get();
|
|
}
|
|
}
|