using Microsoft.Azure.Cosmos.Table; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.SDK.Models.Table { [TableName(Name = "SchoolYear")] public class SchoolYear : TableEntity { public int year { get; set; } } }