categoriesentity.cs

来自「简单的cI真的是很简单 你想要就下载吧」· CS 代码 · 共 45 行

CS
45
字号
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace VinciDataAccess.Entity
{
    /// <summary>
    /// Name:Wicresoft's Vinci Item
    /// Author:Owen Liu
    /// Time:2008.2.20
    public class CategoriesEntity
    {
        private int _categoryID;
        private string _categoryName;
        private string _description;
        /// <summary>
        /// propertiy of _categoryID
        /// </summary>
        public int CategoryID
        {
            get { return _categoryID; }
            set { _categoryID = value; }
        } 
        /// <summary>
        /// propertiy of _categoryName
        /// </summary>
        public string CategoryName
        {
            get { return _categoryName; }
            set { _categoryName = value; }
        }   
        /// <summary>
        /// propertiy of _description
        /// </summary>
        public string Description
        {
            get { return _description; }
            set { _description = value; }
        }


    }
}

⌨️ 快捷键说明

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