Grammar.cs 822 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using NEducation.Code;
  6. namespace NEducation.Models
  7. {
  8. public class GrammarModel
  9. {
  10. public int remainTime { get; set; }
  11. public DateTime startTime { get; set; }
  12. public int currentQuestionIndex { get; set; }
  13. public String lessonId { get; set; }
  14. public String lessonName { get; set; }
  15. public String courseName { get; set; }
  16. //public NEduService.grammar[] listGrammar { get; set; }
  17. //public NEduService.vocaQuestion[] listQuestion { get; set; }
  18. public List<Grammar> grammars { get; set; }
  19. public List<Question> questions { get; set; }
  20. public Question question { get; set; }
  21. public List<AnswerResult> answerList { get; set; }
  22. }
  23. }