BookTypeInfo.cs
上传用户:gooyliu
上传日期:2018-09-29
资源大小:5816k
文件大小:1k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Model
  5. {
  6.    public  class BookTypeInfo
  7.     {
  8.        private string  _bookTypeName;
  9.        private string _bookTypeDesc;
  10.        BookTypeInfo() 
  11.        {
  12.        }
  13.        
  14.        public string BookTypeName
  15.        {
  16.            get { return _bookTypeName; }
  17.            set { _bookTypeName = value; }
  18.        }
  19.        public string BookTypeDesc
  20.        {
  21.            get { return _bookTypeDesc; }
  22.            set { _bookTypeDesc = value; }
  23.        }
  24.     }
  25. }