Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Console/HiveEventEntry.cs @ 1163

Last change on this file since 1163 was 1002, checked in by whackl, 15 years ago

added new features (#397)

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