13 lines
315 B
VB.net
13 lines
315 B
VB.net
Imports Newtonsoft.Json
|
|
Imports Newtonsoft.Json.Converters
|
|
|
|
Public Class UpdateAction
|
|
|
|
<JsonConverter(GetType(StringEnumConverter))>
|
|
Public Property Type As UpdateActionType
|
|
Public Property DestPath As String
|
|
Public Property SrcPath As String
|
|
Public Property DownloadUrl As String
|
|
|
|
End Class
|