10 lines
266 B
C#
10 lines
266 B
C#
namespace FanucProgramManager.Cnc.Mitsubishi
|
|
{
|
|
internal interface IMitsubishiFtpClient
|
|
{
|
|
bool Ping();
|
|
string DownloadFile(string ncPath);
|
|
void UploadFile(string ncPath, string content);
|
|
void DeleteFile(string ncPath);
|
|
}
|
|
}
|