initial commit

This commit is contained in:
2022-06-14 12:15:29 +02:00
commit a284333e96
42 changed files with 8587 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Public Class UpdateCheckResult
Public ReadOnly Property SyncFiles As New List(Of UpdateSyncFile)
Public ReadOnly Property HasUpdates As Boolean
Get
Return SyncFiles.Where(Function(n) n.SyncAction <> UpdateSyncAction.None).Any
End Get
End Property
End Class