fix converter for UpdateInfo.Version

This commit is contained in:
2024-06-17 20:13:45 +02:00
parent b32d2c5512
commit b21d33237f

View File

@@ -7,7 +7,7 @@ Imports Newtonsoft.Json.Converters
Public Class AppUpdater
Private Class UpdateInfo
<JsonConverter(GetType(StringEnumConverter))>
<JsonConverter(GetType(VersionConverter))>
Public Property Version As Version
Public Property DownloadUrl As String
End Class