Jonathan Jenne 5cf8636e49 30-08-2023
2023-08-30 16:09:32 +02:00

14 lines
424 B
VB.net

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 Tuple(Of String, BaseModule.LogLevel))
Event OnFileProcessed As EventHandler(Of String)
Event OnFileError As EventHandler(Of String)
End Interface