KnowledgeDto.cs 471 B

12345678910111213141516171819
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace TEAMModelOS.Model.Syllabus.Dtos
  6. {
  7. public class KnowledgeDto
  8. {
  9. public KnowledgeDto() {
  10. Periods = new List<string>();
  11. PointParams = new Dictionary<string, object>();
  12. }
  13. public string BlockId { get; set; }
  14. public List<string> Periods { get; set; }
  15. public Dictionary<string, object> PointParams { get;set;}
  16. }
  17. }