Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Hive.Client.Console {
|
---|
7 | public class HiveEventEntry {
|
---|
8 | public string Message { get; private set; }
|
---|
9 | public string EventDate { get; private set; }
|
---|
10 | public string EventTime { get; private set; }
|
---|
11 | public string ID { get; private set; }
|
---|
12 |
|
---|
13 | public HiveEventEntry(string message, string eventDate, string eventTime, string id) {
|
---|
14 | Message = message;
|
---|
15 | EventDate = eventDate;
|
---|
16 | EventTime = eventTime;
|
---|
17 | ID = id;
|
---|
18 | }
|
---|
19 | }
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.