19 lines
408 B
C#
19 lines
408 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using Domain;
|
|||
|
|
|
|||
|
|
namespace RCUHost
|
|||
|
|
{
|
|||
|
|
public interface IUpdateRCUFileReceiver
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 升级主机有效期
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="hostUpdate">升级有效期文件</param>
|
|||
|
|
/// <param name="hosts">需要升级的主机</param>
|
|||
|
|
void Update(HostUpdate hostUpdate, IList<Host> hosts);
|
|||
|
|
}
|
|||
|
|
}
|