- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.School
- {
- /// <summary>
- ///Teaching materials 教学材料 --- 知识点,知识块
- /// </summary>
- public class Knowledge : CosmosEntity
- {
- public string periodId { get; set; }
- public string points { get; set; }
- }
- }
|