10 lines
290 B
C#
10 lines
290 B
C#
namespace DbTools.Model {
|
|
internal class SqliteTableDefinition {
|
|
public string @type { get; set; }
|
|
public string name { get; set; }
|
|
public string tbl_name { get; set; }
|
|
public int rootpage { get; set; }
|
|
public string sql { get; set; }
|
|
}
|
|
}
|