Public Access
1
0
mirror of https://github.com/iscmt/event-parser.git synced 2026-04-04 06:02:24 -04:00
Files
event-parser/gui/EventParser/DataRecord.cs
2020-04-14 18:52:03 -04:00

14 lines
380 B
C#

using System;
namespace EventParser.GUI
{
internal class DataRecord
{
public String Level { get; set; }
public String DateAndTime { get; set; }
public String Source { get; set; }
public String EventID { get; set; }
public String TaskCategory { get; set; }
public String InformationDump { get; set; }
}
}