forked from FarmMaps/FarmMapsApiClient
Initial commit
This commit is contained in:
18
FarmmapsApi/ResourceEndpoints.cs
Normal file
18
FarmmapsApi/ResourceEndpoints.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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_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}";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user