QuestionRecord.cs 400 B

12345678910111213
  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. }