1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.ExamView
- {
- public class PageSetupParam
- {
- public string PageName
- {
- get;
- set;
- }
- public string QuesLib
- {
- get;
- set;
- }
- public string QuesLevel
- {
- get;
- set;
- }
- public string QuesChooseSort
- {
- get;
- set;
- }
- public string PageType
- {
- get;
- set;
- }
- public string QuesSetting
- {
- get;
- set;
- }
- public string QuesDis
- {
- get;
- set;
- }
- public string IsEnable
- {
- get;
- set;
- }
- public string ErrRate
- {
- get;
- set;
- }
- public string UseCount
- {
- get;
- set;
- }
- }
- }
|