| 123456789101112131415161718192021 |
- 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<Vocabulary> vocabularies { get; set; }
- public List<Question> questions { get; set; }
- }
- }
|