mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
11 lines
324 B
C#
11 lines
324 B
C#
|
using System.Threading.Tasks;
|
|||
|
using Bit.App.Models.Api;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface IAuthApiRepository
|
|||
|
{
|
|||
|
Task<ApiResult<TokenResponse>> PostTokenAsync(TokenRequest requestObj);
|
|||
|
Task<ApiResult<TokenResponse>> PostTokenTwoFactorAsync(TokenTwoFactorRequest requestObj);
|
|||
|
}
|
|||
|
}
|