bitwarden-android/src/App/Abstractions/Repositories/IDeviceApiRepository.cs

10 lines
248 B
C#
Raw Normal View History

2016-06-18 23:10:09 +03:00
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>
{ }
}