forked from yanw/App_win_iot_V2.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
766 B
36 lines
766 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IOTContainer.SQLite
|
|
{
|
|
/// <summary>
|
|
/// 表信息
|
|
/// </summary>
|
|
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
|
|
|
|
/// <summary>
|
|
/// 表名
|
|
/// </summary>
|
|
public string TableName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段名
|
|
/// </summary>
|
|
public SQLiteColumnList Columns { get; }
|
|
}
|
|
}
|