11 lines
285 B
C#
11 lines
285 B
C#
namespace DbMigrate {
|
|
public 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; }
|
|
|
|
}
|
|
}
|