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