BotSharp/BotSharp.Core/Abstractions/IAgentStorageFactory.cs
2019-03-16 19:55:55 -05:00

11 lines
235 B
C#

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