using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class SysTestRuleItem
{
///
/// ID
///
public string TestRuleId
{
get;
set;
}
///
/// 时长
///
public int Duration
{
get;
set;
}
///
/// 单选题分值
///
public string SValue
{
get;
set;
}
///
/// 多选题分值
///
public string MValue
{
get;
set;
}
///
/// 判断题分值
///
public string JValue
{
get;
set;
}
///
/// 单选题数量
///
public string SCount
{
get;
set;
}
///
/// 多选题数量
///
public string MCount
{
get;
set;
}
///
/// 判断题数量
///
public string JCount
{
get;
set;
}
}
}