feat(api): AgentTask, AgentHistory
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace PARR.API.Contracts.V1
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace PARR.API.Contracts.V1
|
||||
{
|
||||
// https://tproger.ru/translations/luchshie-praktiki-razrabotki-rest-api-20-sovetov/
|
||||
|
||||
@@ -112,6 +114,15 @@
|
||||
public const string taskId = "{taskId}";
|
||||
}
|
||||
|
||||
public static class AgentHistory
|
||||
{
|
||||
public const string GetAll = Base + "/agent-histories/";
|
||||
public const string Get = Base + "/agent-histories/" + getParam;
|
||||
public const string Create = Base + "/agent-histories/";
|
||||
|
||||
public const string getParam = "{id}";
|
||||
}
|
||||
|
||||
|
||||
//public static class Layer
|
||||
//{
|
||||
|
||||
Reference in New Issue
Block a user