Common: Configurable Column Names for Fixed Columns, Helpers for Error Messages, Checks for Datatable contents and environment

This commit is contained in:
Jonathan Jenne
2021-01-06 16:57:44 +01:00
parent f3903089f3
commit d0b0c9d466
8 changed files with 273 additions and 127 deletions

View File

@@ -4,8 +4,15 @@
''' </summary>
Public WindowGuid As String
Public Results As New List(Of DocumentResult)
Public ColumnNames As New ColumnNames
End Class
Public Class DocumentResult
Inherits BaseResult
End Class
Public Class ColumnNames
Public ObjectIdColumn As String = "DocId"
Public FullPathColumn As String = "FULL_PATH"
Public FilenameColumn As String = "Filename"
End Class