classdata.cs

来自「入门级asp.netC#网站三层系统开发」· CS 代码 · 共 54 行

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