Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2845_EnhancedProgress/HeuristicLab.Clients.Hive/3.3/ServiceClients/AssignedProjectResource.cs @ 16311

Last change on this file since 16311 was 16311, checked in by pfleck, 5 years ago

#2845 Merged trunk changes into branch (15406-15681, 15683-16308)

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