BotSharp/src/Infrastructure/BotSharp.Core/Agents/Services/AgentService.DeleteAgent.cs
2023-06-22 23:43:00 -05:00

10 lines
188 B
C#

namespace BotSharp.Core.Agents.Services;
public partial class AgentService
{
public async Task<bool> DeleteAgent(string id)
{
throw new NotImplementedException();
}
}