12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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> 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> 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;
- }
- }
- }
|