Skip to content

Instantly share code, notes, and snippets.

@gautamdsheth
Created November 23, 2017 09:08
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 gautamdsheth/17e1943eaaeba9fae492d6b38f76c31d to your computer and use it in GitHub Desktop.
Save gautamdsheth/17e1943eaaeba9fae492d6b38f76c31d to your computer and use it in GitHub Desktop.
public class AuthenticationResponse
{
public string token_type { get; set; }
public string scope { get; set; }
public int expires_in { get; set; }
public int expires_on { get; set; }
public int not_before { get; set; }
public string resource { get; set; }
public string access_token { get; set; }
public string refresh_token { get; set; }
public string id_token { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment