Add project files.

This commit is contained in:
2025-08-31 10:31:37 -05:00
parent 22897c0b91
commit 67e2959f3c
12 changed files with 906 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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; }
}
}