source:
branches/Operator Architecture Refactoring/HeuristicLab.Hive.Client.Communication/ClientConsole/JobStatus.cs
@
1723
Last change on this file since 1723 was 843, checked in by kgrading, 16 years ago | |
---|---|
File size: 335 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace HeuristicLab.Hive.Client.Communication.ClientConsole { |
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.