forked from FarmMaps/FarmMapsApiClient
19 lines
842 B
C#
19 lines
842 B
C#
namespace FarmmapsApi
|
|
{
|
|
public static class ResourceEndpoints
|
|
{
|
|
public const string CURRENTUSER_RESOURCE = "currentuser";
|
|
public const string MYROOTS_RESOURCE = "folders/my_roots";
|
|
|
|
public const string ITEMS_RESOURCE = "items/{0}";
|
|
public const string ITEMS_CREATE_RESOURCE = "items";
|
|
public const string ITEMS_DOWNLOAD_RESOURCE = "items/{0}/download";
|
|
public const string ITEMS_UPLOAD_RESOURCE = "api/v1/file";
|
|
public const string ITEMS_CHILDREN_RESOURCE = "items/{0}/children";
|
|
public const string ITEMS_DELETE_RESOURCE = "items/delete";
|
|
|
|
public const string ITEMTASK_REQUEST_RESOURCE = "items/{0}/tasks";
|
|
public const string ITEMTASKS_RESOURCE = "items/{0}/tasks";
|
|
public const string ITEMTASK_RESOURCE = "items/{0}/tasks/{1}";
|
|
}
|
|
} |