Bitwarden-app-android-iphon.../src/App/Abstractions/Services/IAuthService.cs

14 lines
292 B
C#

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);
}
}