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 ID { get; private set; }
|
---|
11 |
|
---|
12 | public HiveEventEntry(string message, string eventDate, string id) {
|
---|
13 | Message = message;
|
---|
14 | EventDate = eventDate;
|
---|
15 | ID = id;
|
---|
16 | }
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.