Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ClientConsoleService/TransferObjects/JobStatus.cs @ 919

Last change on this file since 919 was 919, checked in by kgrading, 15 years ago

refactored for #418, disabled the Client Console Project

File size: 333 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Client.Core.ClientConsoleService {
7  [Serializable]
8  public class JobStatus {
9    public long JobId { get; set; }
10    public DateTime Since { get; set; }
11    public double Progress { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.