UpgradeInfo.cs 401 B

12345678910111213141516
  1. using Vinno.vCloud.Protocol.Infrastructures;
  2. using Vinno.vCloud.Protocol.Messages.Upgrade;
  3. namespace Vinno.vCloud.Common.FIS.Upgraders
  4. {
  5. public class UpgradeInfo
  6. {
  7. public string UpgradeUrl { get; set; }
  8. public StorageType StorageType { get; set; }
  9. public UpgradePlatform UpgradePlatform { get; set; }
  10. public UpgradeType UpgradeType { get; set; }
  11. }
  12. }