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