Last change
on this file since 1641 was
1530,
checked in by gkronber, 16 years ago
|
Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576
|
File size:
481 bytes
|
Rev | Line | |
---|
[906] | 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 |
|
---|
[1002] | 12 | public HiveEventEntry(string message, string eventDate, string id) {
|
---|
[906] | 13 | Message = message;
|
---|
| 14 | EventDate = eventDate;
|
---|
| 15 | ID = id;
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.