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, ILoginApiRepository { public LoginApiRepository( IConnectivity connectivity, IHttpService httpService) : base(connectivity, httpService) { } protected override string ApiRoute => "sites"; } }