123456789101112131415161718192021222324252627 |
- 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<AnswerDetail>();
- }
- [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<AnswerDetail> Detail { get; set; }
- }
- }
|