19 lines
498 B
VB.net
19 lines
498 B
VB.net
Namespace Schemas
|
|
Public Class Schema
|
|
Public Property Tables As New List(Of Table)
|
|
Public Property Name As String
|
|
|
|
Class Table
|
|
Public Property Name As String
|
|
Public Property Columns As New List(Of Column)
|
|
End Class
|
|
|
|
Class Column
|
|
Public Property Name As String
|
|
Public Property Required As String
|
|
Public Property DataType As Constants.ColumnType
|
|
End Class
|
|
End Class
|
|
End Namespace
|
|
|