12345678910111213141516171819202122 |
- 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 School
- {
- public School() {
- Period = new List<Period>();
- }
- [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; }
-
- }
- }
|