using Vinno.vCloud.Protocol.Infrastructures;
namespace Vinno.vCloud.Common.FIS.Upgraders
{
public class UpgradePatchInfo
{
///
/// Patch Type
///
public DevicePatchType PatchType { get; }
///
/// Package Version
///
public string Version { get; }
///
/// Download Url
///
public string FileUrl { get; }
///
/// Description
///
public string Description { get; }
public UpgradePatchInfo(DevicePatchType patchType, string version, string fileUrl, string description)
{
PatchType = patchType;
Version = version;
FileUrl = fileUrl;
Description = description;
}
}
}