using System; using System.Collections.Generic; using System.Linq; using System.Text; using Domain; namespace RCUHost { public interface IUpdateRCUFileReceiver { /// /// 升级主机有效期 /// /// 升级有效期文件 /// 需要升级的主机 void Update(HostUpdate hostUpdate, IList hosts); } }