190930
This commit is contained in:
10
Pilz.Updating/Model/BuildState.vb
Normal file
10
Pilz.Updating/Model/BuildState.vb
Normal file
@@ -0,0 +1,10 @@
|
||||
Namespace Model
|
||||
|
||||
Public Enum BuildState
|
||||
Release
|
||||
ReleaseCandidate
|
||||
Beta
|
||||
Alpha
|
||||
End Enum
|
||||
|
||||
End Namespace
|
||||
8
Pilz.Updating/Model/CodeLanguage.vb
Normal file
8
Pilz.Updating/Model/CodeLanguage.vb
Normal file
@@ -0,0 +1,8 @@
|
||||
Namespace Model
|
||||
|
||||
Public Enum CodeLanguage
|
||||
VB
|
||||
CSharp
|
||||
End Enum
|
||||
|
||||
End Namespace
|
||||
13
Pilz.Updating/Model/UpdateInfo.vb
Normal file
13
Pilz.Updating/Model/UpdateInfo.vb
Normal 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
|
||||
12
Pilz.Updating/Model/UpdatePackage.vb
Normal file
12
Pilz.Updating/Model/UpdatePackage.vb
Normal 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
|
||||
Reference in New Issue
Block a user