SchoolSystem.cs 609 B

123456789101112131415161718192021222324
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.BaseInfo.Models
  7. {
  8. public class SchoolSystem
  9. {
  10. public SchoolSystem() {
  11. Period = new List<Period>();
  12. //Semesters = new List<Semester>();
  13. }
  14. [JsonProperty(PropertyName = "id")]
  15. public string Id { get; set; }
  16. [PartitionKey]
  17. public string Code { get; set; }
  18. public string Name { get; set; }
  19. public List<Period> Period { get; set; }
  20. }
  21. }