Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Models/HiveTaskContainer.cs @ 13712

Last change on this file since 13712 was 13712, checked in by jlodewyc, 8 years ago

#2582 Distribution childs and priority done. Display current jobs and start graphs

File size: 367 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Threading.Tasks;
5
6namespace HeuristicLab.Clients.Hive.WebJobManager.Models
7{
8    public class HiveTaskContainer
9    {
10        public HiveTask hiveTask { get; set; }
11
12        public HiveTaskContainer(HiveTask hi)
13        {
14            hiveTask = hi;
15        }
16    }
17}
Note: See TracBrowser for help on using the repository browser.