BotSharp/BotSharp.Core/Abstractions/IAgentStorageFactory.cs

11 lines
235 B
C#
Raw Normal View History

2019-03-17 00:55:55 +00:00
using BotSharp.Platform.Models;
2018-10-11 13:24:50 +00:00
using System.Threading.Tasks;
2019-03-17 00:55:55 +00:00
namespace BotSharp.Platform.Abstractions
2018-10-11 13:24:50 +00:00
{
public interface IAgentStorageFactory<TAgent> where TAgent : AgentBase
{
IAgentStorage<TAgent> Get();
2018-10-11 13:24:50 +00:00
}
}