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 classes { get; set; } = new List(); } 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 students { get; set; } = new List(); } }