ZooFlow: Clean up, faster search
This commit is contained in:
11
GUIs.ZooFlow/Modules/Globix/Models/DocumentType.vb
Normal file
11
GUIs.ZooFlow/Modules/Globix/Models/DocumentType.vb
Normal file
@@ -0,0 +1,11 @@
|
||||
Namespace Globix.Models
|
||||
Public Class DocType
|
||||
Public Property Guid
|
||||
Public Property Name
|
||||
Public Property ObjectStore
|
||||
|
||||
Public Overrides Function ToString() As String
|
||||
Return Name
|
||||
End Function
|
||||
End Class
|
||||
End Namespace
|
||||
34
GUIs.ZooFlow/Modules/Globix/Models/ManualIndex.vb
Normal file
34
GUIs.ZooFlow/Modules/Globix/Models/ManualIndex.vb
Normal file
@@ -0,0 +1,34 @@
|
||||
Namespace Globix.Models
|
||||
Public Class ManualIndex
|
||||
Public Property Id As Integer
|
||||
|
||||
Public Property DocTypeName As String
|
||||
Public Property DocTypeId As Integer
|
||||
''' <summary>
|
||||
''' WD_INDEX, Name of the Attribute
|
||||
''' </summary>
|
||||
Public Property Name As String
|
||||
''' <summary>
|
||||
''' INDEXNAME, Internal Name for Admin
|
||||
''' </summary>
|
||||
Public Property InternalName As String
|
||||
''' <summary>
|
||||
''' COMMENT, Caption in Index Form
|
||||
''' </summary>
|
||||
Public Property LabelCaption As String
|
||||
Public Property DataType As String
|
||||
Public Property Sequence As Integer
|
||||
|
||||
Public Property SQLSuggestion As String
|
||||
Public Property SQLCommand As String
|
||||
Public Property SQLConnection As Integer
|
||||
|
||||
Public Property DefaultValue As String
|
||||
|
||||
Public Property IsOptional As Boolean
|
||||
Public Property IsMultiselect As Boolean
|
||||
Public Property AllowAddingItems As Boolean
|
||||
Public Property PreventMultleValue As Boolean
|
||||
End Class
|
||||
|
||||
End Namespace
|
||||
12
GUIs.ZooFlow/Modules/Globix/Models/WorkFile.vb
Normal file
12
GUIs.ZooFlow/Modules/Globix/Models/WorkFile.vb
Normal file
@@ -0,0 +1,12 @@
|
||||
Namespace Globix.Models
|
||||
Public Class WorkFile
|
||||
Public FilePath As String
|
||||
Public Id As Integer
|
||||
Public IsAttachment As Boolean = False
|
||||
|
||||
Public Overrides Function ToString() As String
|
||||
Return FilePath
|
||||
End Function
|
||||
End Class
|
||||
|
||||
End Namespace
|
||||
Reference in New Issue
Block a user