-
Notifications
You must be signed in to change notification settings - Fork 0
/
Models.vb
84 lines (48 loc) · 1.83 KB
/
Models.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Imports Newtonsoft.Json
Namespace HTSQuery
'Public Class Result
' Public Property Other As String
' Public Property Superior As String
' Public Property Indent As Integer
' Public Property Description As String
' Public Property StatisticalSuffix As String
' Public Property Score As Decimal
' Public Property Special As String
' Public Property HTSNo As String
' Public Property Footnotes As List(Of Footnote)
' Public Property General As String
' Public Property Units As List(Of String)
'End Class
Public Class Footnote
Public Property Marker As String
Public Property Columns As List(Of String)
Public Property Value As String
End Class
Public Class Result
<JsonProperty("other")>
Public Property Other As String
<JsonProperty("superior")>
Public Property Superior As Object
<JsonProperty("indent")>
Public Property Indent As String
<JsonProperty("description")>
Public Property Description As String
<JsonProperty("statisticalSuffix")>
Public Property StatisticalSuffix As String
<JsonProperty("score")>
Public Property Score As String
<JsonProperty("special")>
Public Property Special As String
<JsonProperty("htsno")>
Public Property Htsno As String
<JsonProperty("footnotes")>
Public Property Footnotes As Object
<JsonProperty("general")>
Public Property General As String
<JsonProperty("units")>
Public Property Units As Object
End Class
Public Class HTSResults
Public Property Results As Result()
End Class
End Namespace