mirror of
https://github.com/iscmt/event-parser.git
synced 2026-04-04 14:02:24 -04:00
14 lines
387 B
C#
Executable File
14 lines
387 B
C#
Executable File
using System;
|
|
|
|
namespace EventParser.ConsoleApp
|
|
{
|
|
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; }
|
|
}
|
|
} |