AnswerGuess.cs 628 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace NEducation.Models
  6. {
  7. public class AnswerGuess
  8. {
  9. public string pos { get; set; }
  10. public string card { get; set; }
  11. public string questionId { get; set; }
  12. public string word { get; set; }
  13. public string synset { get; set; }
  14. public string answerA { get; set; }
  15. public string answerB { get; set; }
  16. public string answerC { get; set; }
  17. public string answerD { get; set; }
  18. public int time { get; set; }
  19. public int isRight { get; set; }
  20. }
  21. }