123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Models
- {
- public class TeacherCourse :CosmosEntity
- {
- public TeacherCourse() {
-
- }
- public string name { get; set; }
- public string scope { get; set; }
- public string notice { get; set; }
- public string subjectId { get; set; }
- public string periodId { get; set; }
- public List<ClassSimple> classes { get; set; } = new List<ClassSimple>();
- }
- public class ClassSimple {
- public string id { get; set; }
- public string name { get; set; }
- public string scope { get; set; }
- public string code { get; set; }
- public Teachers teacher { get; set; }
- //public List<StudentSimple> students { get; set; } = new List<StudentSimple>();
- }
- }
|