20078888

技术前线

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::
using System;
using System.Collections.Generic;
namespace Model
{
    public class Table
    {
        private List<Field> _fields = new List<Field>();
        private string _name;

        public List<Field> Fields
        {
            get
            {
                return this._fields;
            }
            set
            {
                this._fields = value;
            }
        }

        public string Name
        {
            get
            {
                return this._name;
            }
            set
            {
                this._name = value;
            }
        }
    }
}

posted on 2010-05-07 17:29  许雪林  阅读(115)  评论(0)    收藏  举报