12 lines
282 B
VB.net
12 lines
282 B
VB.net
Imports Newtonsoft.Json.Linq
|
|
|
|
Public Class UpdateInfos
|
|
|
|
Public ReadOnly Property Updates As New List(Of UpdateInfo)
|
|
|
|
Public Shared Function Parse(content As String) As UpdateInfos
|
|
Return JObject.Parse(content).ToObject(Of UpdateInfos)
|
|
End Function
|
|
|
|
End Class
|