You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/FileTransfer/Model/FileTransferTask.cs

13 lines
275 B

5 years ago
using System;
5 years ago
namespace ZeroLevel.Network.FileTransfer
5 years ago
{
internal class FileTransferTask
{
public string FilePath;
public Action<string> CompletedHandler;
public Action<string, string> ErrorHandler;
public ExClient Client;
5 years ago
}
}

Powered by TurnKey Linux.