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(); } [JsonProperty(PropertyName = "id")] public string Id { get; set; } [PartitionKey] public string Code { get; set; } public string Name { get; set; } public List Period { get; set; } } }