This commit is contained in:
2019-09-30 16:18:53 +02:00
parent 7d884d7cba
commit 53f2a0666b
70 changed files with 2984 additions and 197 deletions

View File

@@ -0,0 +1,10 @@
Namespace Model
Public Enum BuildState
Release
ReleaseCandidate
Beta
Alpha
End Enum
End Namespace

View File

@@ -0,0 +1,8 @@
Namespace Model
Public Enum CodeLanguage
VB
CSharp
End Enum
End Namespace

View File

@@ -0,0 +1,13 @@
Namespace Model
Public Class UpdateInfo
Public Property Name As String
Public Property Version As Version
Public Property State As BuildState
Public Property Build As UInteger
Public Property Changelog As String
End Class
End Namespace

View File

@@ -0,0 +1,12 @@
Imports Pilz.Updating.Scripts
Namespace Model
Public Class UpdatePackage
Public ReadOnly Property Fileupdates As New List(Of String)
Public ReadOnly Property Scripts As New List(Of Script)
End Class
End Namespace