Much stuff

This commit is contained in:
Jonathan Jenne
2019-04-04 16:29:18 +02:00
parent 7ebd07cf14
commit 9010ad4139
52 changed files with 1482 additions and 83 deletions

View File

@@ -1,3 +1,7 @@
Public Interface IJob
Sub Start(Arguments As Object)
End Interface
Public Interface IJob(Of T)
Sub Start(Arguments As T)
End Interface