using System;
using System.Collections.Generic;
using System.Text;
namespace IOTContainer.SQLite
{
///
/// 表信息
///
public class SQLiteTable
{
#region 构造函数
public SQLiteTable()
{
this.TableName = string.Empty;
this.Columns = new SQLiteColumnList();
}
public SQLiteTable(string name)
{
this.TableName = name;
this.Columns = new SQLiteColumnList();
}
#endregion
///
/// 表名
///
public string TableName { get; set; }
///
/// 字段名
///
public SQLiteColumnList Columns { get; }
}
}