Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ConfigurationManager/ClientStatusInfo.cs @ 932

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

implementation for #425

File size: 409 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Client.Core.ConfigurationManager {
7  public class ClientStatusInfo {
8    static public int JobsProcessed { get; set; }
9    static public int JobsAborted { get; set; }
10    static public int JobsFetched { get; set; }
11    static public DateTime LoginTime { get; set; }
12   
13  }
14}
Note: See TracBrowser for help on using the repository browser.