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,17 @@
Imports Pilz.Updating.Model
Namespace MyEventArgs
Public Class UpdatesFoundEventArgs
Inherits EventArgs
Public Property Cancel As Boolean = False
Public Property Updates As UpdateInfo()
Public Sub New(updates As UpdateInfo())
Me.Updates = updates
End Sub
End Class
End Namespace