Answers.cs 762 B

123456789101112131415161718192021222324252627
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
  7. {
  8. public class Answers
  9. {
  10. public Answers() {
  11. Detail = new List<AnswerDetail>();
  12. }
  13. [JsonProperty(PropertyName = "id")]
  14. public string Id { get; set; }
  15. [PartitionKey]
  16. public string ExNO { get; set; }
  17. public string StudentId { get; set; }
  18. public string CourseCode { get; set; }
  19. public string ClassCode { get; set; }
  20. public string GradeCode { get; set; }
  21. public string SchoolCode { get; set; }
  22. public List<AnswerDetail> Detail { get; set; }
  23. }
  24. }