12345678910111213141516171819 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Syllabus.Dtos
- {
-
- public class KnowledgeDto
- {
- public KnowledgeDto() {
- Periods = new List<string>();
- PointParams = new Dictionary<string, object>();
- }
- public string BlockId { get; set; }
- public List<string> Periods { get; set; }
- public Dictionary<string, object> PointParams { get;set;}
- }
- }
|