19 lines
499 B
VB.net
19 lines
499 B
VB.net
Public Class DocumentResultParams
|
|
''' <summary>
|
|
''' WindowGuid is used to save layout data
|
|
''' </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
|