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 grammars { get; set; } public List questions { get; set; } public Question question { get; set; } public List answerList { get; set; } } }