Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created March 12, 2024 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/1fed8b37c62dcfc8cbea8cbac21eb875 to your computer and use it in GitHub Desktop.
Save bjoerntx/1fed8b37c62dcfc8cbea8cbac21eb875 to your computer and use it in GitHub Desktop.
public sealed class BearerToken
{
[JsonProperty(PropertyName = "access_token")]
public string AccessToken { get; set; }
[JsonProperty(PropertyName = "token_type")]
public string TokenType { get; set; }
[JsonProperty(PropertyName = "expires_in")]
public int ExpiresInMilliseconds { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment