using NEducation.Code; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace NEducation.Models { public class VocabularyModel { public String lessonId { get; set; } public String lessonName { get; set; } public String courseName { get; set; } //public NEduService.vocabulary[] listVoca { get; set; } //public NEduService.vocaQuestion[] listQuestion { get; set; } //public NEduService.vocabulary selectedVoca { get; set; } public List vocabularies { get; set; } public List questions { get; set; } } }