VocabularyModel.cs 644 B

123456789101112131415161718192021
  1. using NEducation.Code;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Web;
  6. namespace NEducation.Models
  7. {
  8. public class VocabularyModel
  9. {
  10. public String lessonId { get; set; }
  11. public String lessonName { get; set; }
  12. public String courseName { get; set; }
  13. //public NEduService.vocabulary[] listVoca { get; set; }
  14. //public NEduService.vocaQuestion[] listQuestion { get; set; }
  15. //public NEduService.vocabulary selectedVoca { get; set; }
  16. public List<Vocabulary> vocabularies { get; set; }
  17. public List<Question> questions { get; set; }
  18. }
  19. }