123456789101112131415161718192021222324 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.BaseInfo.Models
- {
- public class SchoolSystem
- {
- public SchoolSystem() {
- Period = new List<Period>();
- //Semesters = new List<Semester>();
- }
- [JsonProperty(PropertyName = "id")]
- public string Id { get; set; }
- [PartitionKey]
- public string Code { get; set; }
- public string Name { get; set; }
- public List<Period> Period { get; set; }
-
- }
- }
|