mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
15 lines
489 B
C#
15 lines
489 B
C#
using System.Threading.Tasks;
|
|
using Bit.App.Models.Api;
|
|
using System;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IAccountsApiRepository
|
|
{
|
|
Task<ApiResult> PostRegisterAsync(RegisterRequest requestObj);
|
|
Task<ApiResult> PostPasswordHintAsync(PasswordHintRequest requestObj);
|
|
Task<ApiResult<DateTime?>> GetAccountRevisionDateAsync();
|
|
Task<ApiResult<ProfileResponse>> GetProfileAsync();
|
|
Task<ApiResult<KeysResponse>> GetKeys();
|
|
}
|
|
} |