using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { public class QuestionRecord { public int index { get; set; } public Dictionary> opt { get; set; } = new Dictionary>(); public Dictionary other { get; set; } = new Dictionary(); } }