answer.cs

来自「.net环境下的在线考试系统」· CS 代码 · 共 49 行

CS
49
字号
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 + =
减小字号Ctrl + -
显示快捷键?