📄 answer.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
namespace ExamModel.Auto_Generated_Code
{
public class Answer
{
private User uid;
private Paper paperid;
private Score scoreid;
private string question;
private string daAn;
private int mark;
public User UID
{
get { return this.uid; }
set { this.uid = value; }
}
public Paper PaperID
{
get { return this.paperid; }
set { this.paperid = value; }
}
public Score ScoreID
{
get { return this.scoreid; }
set { this.scoreid = value; }
}
public string Question
{
get { return this.question; }
set { this.question = value; }
}
public string ANswer
{
get { return this.daAn; }
set { this.daAn = value; }
}
public int Mark
{
get { return this.mark; }
set { this.mark = value; }
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -