You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
743 B

Public Class clsDocuments
Public Class Content
Public Property fileId As Integer
Public Property name As String
Public Property mimeType As String
Public Property documentType As String
Public Property datetime As String
Public Property broker As Object
Public Property source As Object
Public Property comments As Object
Public Property links As List(Of Link)
End Class
Public Class Link
Public Property rel As String
Public Property href As String
End Class
Public Class Root
Public Property links As List(Of Link)
Public Property content As List(Of Content)
End Class
End Class