mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
16 lines
390 B
C#
16 lines
390 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;
|
|||
|
|
|||
|
namespace Bit.App.Repositories
|
|||
|
{
|
|||
|
public class SiteApiRepository : ApiRepository<SiteRequest, SiteResponse, string>, ISiteApiRepository
|
|||
|
{
|
|||
|
protected override string ApiRoute => "sites";
|
|||
|
}
|
|||
|
}
|