Skip to content

Instantly share code, notes, and snippets.

@isdaviddong
Created January 3, 2019 11:30
Show Gist options
  • Save isdaviddong/6c32ea2f06c60891879c6e953eb61a5b to your computer and use it in GitHub Desktop.
Save isdaviddong/6c32ea2f06c60891879c6e953eb61a5b to your computer and use it in GitHub Desktop.
public class Answer
{
public string answer { get; set; }
public List<string> questions { get; set; }
public decimal score { get; set; }
}
public class QnAresponse
{
public List<Answer> answers { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment