BotSharp/src/Infrastructure/BotSharp.Core/Agents/Services/AgentService.DeleteAgent.cs

10 lines
188 B
C#
Raw Normal View History

2023-06-23 04:43:00 +00:00
namespace BotSharp.Core.Agents.Services;
public partial class AgentService
{
public async Task<bool> DeleteAgent(string id)
{
throw new NotImplementedException();
}
}