2016-05-06 07:17:38 +03:00
|
|
|
|
using System;
|
|
|
|
|
using Bit.App.Abstractions;
|
|
|
|
|
using Bit.App.Models.Api;
|
2016-07-02 01:54:00 +03:00
|
|
|
|
using Plugin.Connectivity.Abstractions;
|
2016-05-06 07:17:38 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Repositories
|
|
|
|
|
{
|
|
|
|
|
public class FolderApiRepository : ApiRepository<FolderRequest, FolderResponse, string>, IFolderApiRepository
|
|
|
|
|
{
|
2016-12-24 18:54:18 +03:00
|
|
|
|
public FolderApiRepository(
|
|
|
|
|
IConnectivity connectivity,
|
2017-02-05 07:31:37 +03:00
|
|
|
|
IHttpService httpService,
|
|
|
|
|
ITokenService tokenService)
|
|
|
|
|
: base(connectivity, httpService, tokenService)
|
2016-07-02 01:54:00 +03:00
|
|
|
|
{ }
|
|
|
|
|
|
2017-11-20 15:32:58 +03:00
|
|
|
|
protected override string ApiRoute => "/folders";
|
2016-05-06 07:17:38 +03:00
|
|
|
|
}
|
|
|
|
|
}
|