using System;
using System.Collections.Generic;
namespace Model
{
public class Table
{
private List<Field> _fields = new List<Field>();
private string _name;
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;
}
}
}
}

浙公网安备 33010602011771号