29 lines
656 B
VB.net
29 lines
656 B
VB.net
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
|
|
|
|
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 ColumnType
|
|
End Class
|
|
|
|
End Class
|
|
End Namespace
|
|
|