mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
10 lines
248 B
C#
10 lines
248 B
C#
|
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>
|
|||
|
{ }
|
|||
|
}
|