QuestionRecord.cs 574 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. public class QuestionRecord
  7. {
  8. public int index { get; set; }
  9. public Dictionary<string, HashSet<string>> opt { get; set; } = new Dictionary<string, HashSet<string>>();
  10. public Dictionary<string, string> other { get; set; } = new Dictionary<string, string>();
  11. }
  12. public class AnswerRecord
  13. {
  14. public string index { get; set; }
  15. public Dictionary<string, int> ans { get; set; } = new Dictionary<string, int>();
  16. }
  17. }