1234567891011121314151617181920212223242526272829303132 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace TEAMModelOS.Model.EvaluaTion.Dtos
- {
- public class MemberAnswer
- {
- [JsonPropertyName("MemberID")]
- public string StudentId { get; set; }
- [JsonPropertyName("ExNO")]
- public string ExNO { get; set; }
- [JsonPropertyName("ItemIndex")]
- public string Itemindex { get; set; }
- [JsonPropertyName("Selection")]
- public string Selection { get; set; }
- [JsonPropertyName("SpendTime")]
- public string Spend_time { get; set; }
- [JsonPropertyName("stu_point")]
- public string Point { get; set; }
- [JsonPropertyName("MiniNotePngFile")]
- public string Mininote_image { get; set; }
- [JsonPropertyName("MiniNoteXmlFile")]
- public string Mininote_xml { get; set; }
- [JsonPropertyName("MiniNoteTextAnswer")]
- public string Mininote_text { get; set; }
- [JsonPropertyName("MiniNoteNoteLink")]
- public string Mininote_link { get; set; }
- }
- }
|