SyllabusTree.cs 326 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Service.Models.Syllabus
  5. {
  6. public class SyllabusTree :SyllabusNode
  7. {
  8. public SyllabusTree() {
  9. children = new List<SyllabusTree>();
  10. }
  11. public List<SyllabusTree> children { get; set; }
  12. }
  13. }