| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using NEducation.Code;
- namespace NEducation.Models
- {
- public class GrammarModel
- {
- public int remainTime { get; set; }
- public DateTime startTime { get; set; }
- public int currentQuestionIndex { get; set; }
- public String lessonId { get; set; }
- public String lessonName { get; set; }
- public String courseName { get; set; }
- //public NEduService.grammar[] listGrammar { get; set; }
- //public NEduService.vocaQuestion[] listQuestion { get; set; }
- public List<Grammar> grammars { get; set; }
- public List<Question> questions { get; set; }
- public Question question { get; set; }
- public List<AnswerResult> answerList { get; set; }
- }
- }
|