mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 18:23:51 +00:00
23 lines
606 B
C#
23 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Models.Api;
|
|
using Newtonsoft.Json;
|
|
using Plugin.Connectivity.Abstractions;
|
|
|
|
namespace Bit.App.Repositories
|
|
{
|
|
public class LoginApiRepository : ApiRepository<LoginRequest, LoginResponse, string>, ILoginApiRepository
|
|
{
|
|
public LoginApiRepository(
|
|
IConnectivity connectivity,
|
|
IHttpService httpService)
|
|
: base(connectivity, httpService)
|
|
{ }
|
|
|
|
protected override string ApiRoute => "sites";
|
|
}
|
|
}
|