16 lines
356 B
VB.net
16 lines
356 B
VB.net
Imports System.Collections.Generic
|
|
|
|
Namespace Database.Base
|
|
|
|
|
|
Public Class IndexSchema
|
|
Public IndexName As String
|
|
Public IsUnique As Boolean
|
|
Public Columns As List(Of IndexColumn)
|
|
End Class
|
|
|
|
Public Class IndexColumn
|
|
Public ColumnName As String
|
|
Public IsAscending As Boolean
|
|
End Class
|
|
End NameSpace |