09-08-2023

This commit is contained in:
Jonathan Jenne
2023-08-09 09:10:03 +02:00
parent c7f4885078
commit 3e41e5b469
44 changed files with 1024 additions and 638 deletions

View File

@@ -0,0 +1,11 @@
Imports System.Threading.Tasks
Public Interface ISync
Property Name As String
Property IsLoggedIn() As Boolean
Function Run() As Task
Function Cleanup() As Task
Function TestConfigIsComplete() As Boolean
Event OnLogEntry As EventHandler(Of String)
End Interface