BotSharp/src/Infrastructure/BotSharp.Abstraction/Tasks/ITaskFeeder.cs
2025-01-30 11:10:15 -06:00

9 lines
152 B
C#

using BotSharp.Abstraction.Tasks.Models;
namespace BotSharp.Abstraction.Tasks;
public interface ITaskFeeder
{
Task<List<AgentTask>> GetTasks();
}