mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 15:53:44 +00:00
17 lines
443 B
C#
17 lines
443 B
C#
using Newtonsoft.Json;
|
|
|
|
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; }
|
|
}
|
|
}
|