12 lines
290 B
VB.net
12 lines
290 B
VB.net
Imports Newtonsoft.Json
|
|
|
|
Public Class InstallInfos
|
|
|
|
Public ReadOnly Property Actions As New List(Of InstallAction)
|
|
|
|
Public Shared Function Parse(content As String) As InstallInfos
|
|
Return JsonConvert.DeserializeObject(Of InstallInfos)(content)
|
|
End Function
|
|
|
|
End Class
|