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 Answer { [JsonProperty(PropertyName = "id")] public string Id { get; set; } public string Number { get; set; } [PartitionKey] public string ExNO { get; set; } public string StudentId { get; set; } public string Index { get; set; } public float Point { get; set; } public string Detail { get; set; } public string CourseCode { get; set; } public string ClassCode { get; set; } public string GradeCode { get; set; } public string SchoolCode { get; set; } public string ExamName { get; set; } } }