1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00

implemented repository for device apis

This commit is contained in:
Kyle Spearrin
2016-06-18 16:10:09 -04:00
parent 8677e9e7ae
commit 3e91510868
7 changed files with 51 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.App.Models.Api;
namespace Bit.App.Abstractions
{
public interface IDeviceApiRepository : IApiRepository<DeviceRequest, DeviceResponse, string>
{ }
}