using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels { public class Exams { [JsonProperty(PropertyName = "id")] public string Id { get; set; } [PartitionKey] 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; } public string Sub { get; set; } } }