14 lines
311 B
C#
14 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RCUHost
|
|
{
|
|
public interface IT_FTPReceiver
|
|
{
|
|
void Send_QueryData(byte[] data, string hostnumber, string mac);
|
|
//void Send_Setting_Data(byte[] data, string hostnumber, string mac);
|
|
}
|
|
}
|