Created
January 23, 2013 11:11
-
-
Save jazlalli/4604498 to your computer and use it in GitHub Desktop.
Access token class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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