📄 judgeproblem.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace ExamModel.Auto_Generated_Code
{
public class JudgeProblem
{
/// <summary>
/// 判断题
/// </summary>
private int judgeProblemID;
private Course jcourse;
private string Title = String.Empty;
private bool Answer;
//判断题ID
public int JudgeProblemID
{
get { return this.judgeProblemID; }
set { this.judgeProblemID = value; }
}
//判断题课程
public Course JCourse
{
get { return this.jcourse; }
set { this.jcourse = value; }
}
//判断题题目
public string JTitle
{
get { return this.Title; }
set { this.Title = value; }
}
//判断题答案
public bool JAnswer
{
get { return this.Answer; }
set { this.Answer = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -