using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels { [TableSpace(Name = "Evaluation")] public class CouseExam { [JsonProperty(PropertyName = "id")] public string Id { get; set; } public string Number { get; set; } public string ExNO { get; set; } public string ExName { get; set; } public string ExTime { get; set; } public int AcademicYear { get; set; } public int SOrder { get; set; } [PartitionKey] public string Subject { get; set; } public string ItemNO { get; set; } public string SchoolName { get; set; } } }