mirror of
https://github.com/bitwarden/mobile
synced 2025-12-13 14:53:18 +00:00
implemented repository for device apis
This commit is contained in:
11
src/App/Repositories/DeviceApiRepository.cs
Normal file
11
src/App/Repositories/DeviceApiRepository.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using Bit.App.Abstractions;
|
||||
using Bit.App.Models.Api;
|
||||
|
||||
namespace Bit.App.Repositories
|
||||
{
|
||||
public class DeviceApiRepository : ApiRepository<DeviceRequest, DeviceResponse, string>, IDeviceApiRepository
|
||||
{
|
||||
protected override string ApiRoute => "devices";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user