Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Common/Status.cs @ 819

Last change on this file since 819 was 789, checked in by whackl, 16 years ago

Added Status class (#374)

File size: 492 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace HeuristicLab.Hive.Client.Common {
7  public static class Status {
8    public static int CurrentJobs { get; set; }
9    public static int CurrentUsedCores { get; set; }
10    public static DateTime LoginTime { get; set; }
11    public static bool LoggedIn { get; set; }
12
13    static Status() {
14      CurrentJobs = 0;
15      CurrentUsedCores = 0;
16      LoggedIn = false;
17    }
18  }
19}
Note: See TracBrowser for help on using the repository browser.