using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMISOnline.ViewModel.ExamView { public class Answers { public decimal answer_id { get; set; } public string content { get; set; } public bool? hasImg { get; set; } public decimal score { get; set; } public string url { get; set; } public decimal width { get; set; } public decimal height { get; set; } public string note { get; set; } } public class QuestionDetailView { public decimal question_id { get; set; } public string content { get; set; } public bool? hasImg { get; set; } public decimal score { get; set; } public string url { get; set; } public decimal width { get; set; } public decimal height { get; set; } public string note { get; set; } public string rightAnswer { get; set; } public List answers { get; set; } } public class PaperQuestionView { public decimal question_id { get; set; } public decimal question_typeid { get; set; } public string content { get; set; } public bool? hasImg { get; set; } public decimal score { get; set; } public string url { get; set; } public decimal width { get; set; } public decimal height { get; set; } public string note { get; set; } public string rightAnswer { get; set; } public string userAnswer { get; set; } public decimal userscore { get; set; } public IEnumerable answers { get; set; } } public class AnswerXml { public decimal test_question_Id { get; set; } public string answers { get; set; } public decimal src_score { get; set; } public decimal act_score { get; set; } public string memo { set; get; } } }