Changeset 7429 for branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Model
- Timestamp:
- 01/30/12 17:39:27 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.CloudManager/3.3/Model/Deployment.cs
r7402 r7429 38 38 public List<Role> RoleList { get; set; } 39 39 public Subscription Subscription { get; set; } 40 public bool Modified { get; set; } 41 public int NewInstanceCount { get; set; } 40 42 41 43 public Deployment() { 42 44 this.Modified = false; 43 45 } 44 46 … … 56 58 this.RoleList = new List<Role>(original.RoleList); 57 59 this.Subscription = cloner.Clone(original.Subscription); 60 this.Modified = original.Modified; 61 this.NewInstanceCount = original.NewInstanceCount; 58 62 59 63 } … … 93 97 this.RoleList = deployment.RoleList; 94 98 this.Subscription = deployment.Subscription; 99 //this.Modified = deployment.Modified; 100 //this.NewInstanceCount = deployment.NewInstanceCount; 95 101 } 96 102 }
Note: See TracChangeset
for help on using the changeset viewer.