bitwarden-android/src/App/Abstractions/Repositories/ICipherApiRepository.cs
2017-04-19 22:04:43 -04:00

12 lines
No EOL
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();
}
}