⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classdata.cs

📁 新闻网站
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace Common.Entities
{
    public class ClassData
    {
        private int classID;
        private string className;
        private int parentID;
        private int child;
        private int lastNode;
        private string example;

        public string Example
        {
            get { return example; }
            set { example = value; }
        }

        public int LastNode
        {
            get { return lastNode; }
            set { lastNode = value; }
        }

        public int Child
        {
            get { return child; }
            set { child = value; }
        }

        public int ParentID
        {
            get { return parentID; }
            set { parentID = value; }
        }

        public string ClassName
        {
            get { return className; }
            set { className = value; }
        }

        public int ClassID
        {
            get { return classID; }
            set { classID = value; }
        }
	
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -