1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.ExamView
- {
- public class QuestionSettingJsonObj
- {
- public decimal QType
- { get; set; }
- public int PSum
- { get; set; }
- public int TSum
- { get; set; }
- public decimal QScore
- { get; set; }
- }
- }
|