Skip to content

Instantly share code, notes, and snippets.

@jazlalli
Created January 23, 2013 11:11
Show Gist options
  • Save jazlalli/4604498 to your computer and use it in GitHub Desktop.
Save jazlalli/4604498 to your computer and use it in GitHub Desktop.
Access token class
public class AccessToken
{
[JsonProperty(PropertyName = "access_token")]
public string Token { get; set; }
[JsonProperty(PropertyName = "token_type")]
public string TokenType { get; set; }
[JsonProperty(PropertyName = "expires_in")]
public int ExpiresIn { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment