This commit is contained in:
moxiliang
2025-10-24 14:08:41 +08:00
parent dcd9b20fb0
commit 7065cad6d7
479 changed files with 105341 additions and 647562 deletions

View File

@@ -0,0 +1,17 @@
using System;
namespace NetWorkHelper
{
public delegate void FileSendEventHandler(object sender, FileSendEventArgs e);
public class FileSendEventArgs : EventArgs
{
public FileSendEventArgs(SendFileManager sendFileManager)
: base()
{
SendFileManager = sendFileManager;
}
public SendFileManager SendFileManager { get; }
}
}