1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00
Files
mobile/src/App/Abstractions/Repositories/IDeviceApiRepository.cs
2016-08-06 18:45:23 -04:00

14 lines
429 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> PutTokenAsync(string identifier, DeviceTokenRequest request);
Task<ApiResult> PutClearTokenAsync(string identifier);
}
}