MemberAnswer.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. 
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. namespace TEAMModelOS.Model.EvaluaTion.Dtos
  7. {
  8. public class MemberAnswer
  9. {
  10. [JsonPropertyName("MemberID")]
  11. public string StudentId { get; set; }
  12. [JsonPropertyName("ExNO")]
  13. public string ExNO { get; set; }
  14. [JsonPropertyName("ItemIndex")]
  15. public string Itemindex { get; set; }
  16. [JsonPropertyName("Selection")]
  17. public string Selection { get; set; }
  18. [JsonPropertyName("SpendTime")]
  19. public string Spend_time { get; set; }
  20. [JsonPropertyName("stu_point")]
  21. public string Point { get; set; }
  22. [JsonPropertyName("MiniNotePngFile")]
  23. public string Mininote_image { get; set; }
  24. [JsonPropertyName("MiniNoteXmlFile")]
  25. public string Mininote_xml { get; set; }
  26. [JsonPropertyName("MiniNoteTextAnswer")]
  27. public string Mininote_text { get; set; }
  28. [JsonPropertyName("MiniNoteNoteLink")]
  29. public string Mininote_link { get; set; }
  30. }
  31. }