mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
12 lines
293 B
C#
12 lines
293 B
C#
|
using System;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Bit.App.Models.Api;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface ICipherApiRepository
|
|||
|
{
|
|||
|
Task<ApiResult<CipherResponse>> GetByIdAsync(string id);
|
|||
|
Task<ApiResult<ListResponse<CipherResponse>>> GetAsync();
|
|||
|
}
|
|||
|
}
|