| 123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using NEducation.Code;
- namespace NEducation.Models
- {
- public class ListeningModel
- {
- public String lessonId { get; set; }
- public String lessonName { get; set; }
- public String courseName { get; set; }
- //public NEduService.listening[] listening { get; set; }
- //public NEduService.vocaQuestion[] listQuestion { get; set; }
- public List<Listening> listenings { get; set; }
- public List<Question> questions { get; set; }
- public bool fromEbookVideo { get; set; }
- }
- }
|