mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 09:13:15 +00:00
initial commit
This commit is contained in:
13
src/App/Abstractions/Services/IAuthService.cs
Normal file
13
src/App/Abstractions/Services/IAuthService.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Threading.Tasks;
|
||||
using Bit.App.Models.Api;
|
||||
|
||||
namespace Bit.App.Abstractions
|
||||
{
|
||||
public interface IAuthService
|
||||
{
|
||||
bool IsAuthenticated { get; }
|
||||
string Token { get; set; }
|
||||
|
||||
Task<ApiResult<TokenResponse>> TokenPostAsync(TokenRequest request);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user