Files
minecraft-modpack-updater/ModpackUpdater.Model/UpdateInfo.vb
2024-04-21 09:36:33 +02:00

11 lines
251 B
VB.net

Imports Newtonsoft.Json
Imports Newtonsoft.Json.Converters
Public Class UpdateInfo
<JsonConverter(GetType(VersionConverter))>
Public Property Version As Version
Public ReadOnly Property Actions As New List(Of UpdateAction)
End Class