Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Clients.Hive/3.3/ServiceClients/AssignedJobResource.cs @ 17226

Last change on this file since 17226 was 16723, checked in by abeham, 6 years ago

#2521: merged changes from r15684 to trunk HEAD (r16716) and resolved all merge conflicts

  • it doesn't build
File size: 376 bytes
Line 
1using HeuristicLab.Common;
2
3namespace HeuristicLab.Clients.Hive {
4  public partial class AssignedJobResource : IDeepCloneable, IContent {
5    public AssignedJobResource() { }
6
7    public AssignedJobResource(AssignedJobResource original, Cloner cloner) : base(original, cloner) {
8      ResourceId = original.ResourceId;
9      JobId = original.JobId;
10    }
11  }
12}
Note: See TracBrowser for help on using the repository browser.