Files
Modules/Jobs/JobInterface.vb
Developer01 0e31f5c8e3 Rename
2026-07-07 17:00:11 +02:00

10 lines
209 B
VB.net

Public Interface IJob
Sub Start(Arguments As Object)
End Interface
Public Interface IJob(Of T)
Sub StartDexAPISQL(Arguments As T)
Function ShouldStart(Arguments As T) As Boolean
End Interface