KnowledgeDto.cs 275 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.Syllabus.Dtos
  5. {
  6. public class KnowledgeDto
  7. {
  8. public List<string> Periods { get; set; }
  9. public Dictionary<string, object> PointParams { get;set;}
  10. }
  11. }