This commit is contained in:
Jonathan Jenne
2021-10-27 10:32:04 +02:00
parent 8dfc659ef8
commit a519b93f47
18 changed files with 351 additions and 165 deletions

View File

@@ -1,14 +1,5 @@
Namespace Schemas
Public Class Schema
Public Enum ColumnType As Integer
[String]
[Integer]
[Date]
[Boolean]
[Decimal]
End Enum
Public Property Tables As New List(Of Table)
Public Property Name As String
@@ -20,9 +11,8 @@
Class Column
Public Property Name As String
Public Property Required As String
Public Property DataType As ColumnType
Public Property DataType As Constants.ColumnType
End Class
End Class
End Namespace