Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Communication/ClientConsole/JobStatus.cs @ 843

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

worked on #401

File size: 335 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.