mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
14 lines
No EOL
461 B
C#
14 lines
No EOL
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.App.Models.Api;
|
|
using Bit.App.Repositories;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IDeviceApiRepository : IApiRepository<DeviceRequest, DeviceResponse, string>
|
|
{
|
|
Task<ApiResult<DeviceResponse>> PutTokenAsync(string identifier, DeviceTokenRequest request);
|
|
Task<ApiResult<DeviceResponse>> PutClearTokenAsync(string identifier);
|
|
}
|
|
} |