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.

21 lines
554 B

Public Class clsAttributes
Public Class Attribute
Public Property key As String
Public Property value As String
Public Property type As String
Public Property panel As String
Public Property label As String
End Class
Public Class Link
Public Property rel As String
Public Property href As String
End Class
Public Class Root
Public Property attributes As List(Of Attribute)
Public Property links As List(Of Link)
End Class
End Class