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