mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
19 lines
557 B
C#
19 lines
557 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Models.Api;
|
|
using Plugin.Connectivity.Abstractions;
|
|
|
|
namespace Bit.App.Repositories
|
|
{
|
|
public class FolderApiRepository : ApiRepository<FolderRequest, FolderResponse, string>, IFolderApiRepository
|
|
{
|
|
public FolderApiRepository(
|
|
IConnectivity connectivity,
|
|
IHttpService httpService,
|
|
ITokenService tokenService)
|
|
: base(connectivity, httpService, tokenService)
|
|
{ }
|
|
|
|
protected override string ApiRoute => "folders";
|
|
}
|
|
}
|