mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
21 lines
622 B
C#
21 lines
622 B
C#
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class TokenResponse
|
|
{
|
|
[JsonProperty("access_token")]
|
|
public string AccessToken { get; set; }
|
|
[JsonProperty("expires_in")]
|
|
public long ExpiresIn { get; set; }
|
|
[JsonProperty("refresh_token")]
|
|
public string RefreshToken { get; set; }
|
|
[JsonProperty("token_type")]
|
|
public string TokenType { get; set; }
|
|
public List<int> TwoFactorProviders { get; set; }
|
|
public string PrivateKey { get; set; }
|
|
public string Key { get; set; }
|
|
}
|
|
}
|