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 Answers { public Answers() { Detail = new List(); } [JsonProperty(PropertyName = "id")] public string Id { get; set; } [PartitionKey] public string ExNO { get; set; } public string StudentId { get; set; } public string CourseCode { get; set; } public string ClassCode { get; set; } public string GradeCode { get; set; } public string SchoolCode { get; set; } public List Detail { get; set; } } }