Changeset 5786 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/HiveServiceClient.cs
- Timestamp:
- 03/22/11 11:36:53 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/ServiceClients/HiveServiceClient.cs
r5779 r5786 94 94 95 95 [System.Runtime.Serialization.OptionalFieldAttribute()] 96 private System.DateTime LastJobDataUpdateField; 97 98 [System.Runtime.Serialization.OptionalFieldAttribute()] 96 99 private System.Nullable<System.Guid> ParentJobIdField; 97 100 … … 132 135 this.ExecutionTimeField = value; 133 136 this.RaisePropertyChanged("ExecutionTime"); 137 } 138 } 139 } 140 141 [System.Runtime.Serialization.DataMemberAttribute()] 142 public System.DateTime LastJobDataUpdate 143 { 144 get 145 { 146 return this.LastJobDataUpdateField; 147 } 148 set 149 { 150 if ((this.LastJobDataUpdateField.Equals(value) != true)) 151 { 152 this.LastJobDataUpdateField = value; 153 this.RaisePropertyChanged("LastJobDataUpdate"); 134 154 } 135 155 }
Note: See TracChangeset
for help on using the changeset viewer.