using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace RCUHost { public interface INetworkSettingReceiver { /// /// 设置主机网络参数 /// /// /// /// /// /// /// bool SetNetwork(Host host, string ip, string subnetmask, string gateway, int port); } }