Created
January 3, 2019 11:30
-
-
Save isdaviddong/6c32ea2f06c60891879c6e953eb61a5b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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