using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class appQuestionResult { public int Id { get; set; } /// /// 试题编号 /// public int QuestionSort { get; set; } /// /// 问题typeid /// public int QuestionTypeId { get; set; } /// /// 问题 /// public string QuestionTitle { get; set; } /// /// 标签 /// public string QuestionTag { get; set; } /// /// 问题类型 /// public string QuestionType { get; set; } /// /// 是否正反记分 /// public int IsAddScore { get; set; } } public class QuestionMBTI { /// /// 试题编号 /// public int? QuestionSort { get; set; } /// /// 试题 /// public string QuestionTitle { get; set; } /// /// 选项 /// public List Answers { get; set; } } public class MBTIProperty { /// /// A或者B /// public string key { get; set; } /// /// 选项内容 /// public string value { get; set; } /// /// 选项标签 /// public string type { get; set; } } }