Common: Rework of DocumentResultList WIP

This commit is contained in:
Jonathan Jenne
2022-01-18 13:27:20 +01:00
parent febd89a3c0
commit f5ec035772
24 changed files with 486 additions and 477 deletions

View File

@@ -0,0 +1,26 @@
Imports DigitalData.Modules.ZooFlow.Constants
Namespace DocumentResultList
Public Class Params
''' <summary>
''' WindowGuid is used to save layout data
''' </summary>
Public WindowGuid As String
Public WindowTitle As String = ""
Public Results As New List(Of DocumentResult)
Public ColumnNames As New ColumnNames
Public OperationModeOverride As OperationMode = OperationMode.None
End Class
Public Class DocumentResult
Inherits BaseResult
End Class
Public Class ColumnNames
Public ObjectIdColumn As String = "DocId"
Public FullPathColumn As String = "FULL_FILENAME"
Public FilenameColumn As String = "Name"
Public IconColumn As String = "ICON"
End Class
End Namespace