10 lines
188 B
C#
10 lines
188 B
C#
namespace BotSharp.Core.Agents.Services;
|
|
|
|
public partial class AgentService
|
|
{
|
|
public async Task<bool> DeleteAgent(string id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|