using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domain;
namespace RCUHost
{
public interface IUpdateHostReceiver
{
///
/// 升级
///
/// 升级文件
/// 需要升级的主机
void Update(HostUpdate hostUpdate, FileType fileType, string fileHref, string fileMd5, IList hosts);
}
}