Listening.cs 625 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using NEducation.Code;
  6. namespace NEducation.Models
  7. {
  8. public class ListeningModel
  9. {
  10. public String lessonId { get; set; }
  11. public String lessonName { get; set; }
  12. public String courseName { get; set; }
  13. //public NEduService.listening[] listening { get; set; }
  14. //public NEduService.vocaQuestion[] listQuestion { get; set; }
  15. public List<Listening> listenings { get; set; }
  16. public List<Question> questions { get; set; }
  17. public bool fromEbookVideo { get; set; }
  18. }
  19. }