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