Files
minecraft-modpack-updater/ModpackUpdater.Model/UpdateInfos.vb
2024-04-21 11:40:49 +02:00

12 lines
284 B
VB.net

Imports Newtonsoft.Json
Public Class UpdateInfos
Public ReadOnly Property Updates As New List(Of UpdateInfo)
Public Shared Function Parse(content As String) As UpdateInfos
Return JsonConvert.DeserializeObject(Of UpdateInfos)(content)
End Function
End Class