using Newtonsoft.Json; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Service.Models.Core { public class School { public School() { period = new List(); } [JsonProperty(PropertyName = "id")] public string id { get; set; } public string schoolCode { get; set; } [PartitionKey] public string areaCode { get; set; } public string schoolName { get; set; } public List period { get; set; } } }