mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 07:13:33 +00:00
13 lines
375 B
C#
13 lines
375 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?>> GetAccountRevisionDate();
|
|
}
|
|
} |