You've already forked EventLogLoader
mirror of
https://github.com/romanlryji/EventLogLoader.git
synced 2025-12-03 23:09:42 +02:00
27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
namespace EventLogApp
|
|
{
|
|
public class ElasticSearchFieldSynonymsClass
|
|
{
|
|
public string ServerName { get; set; }
|
|
public string DatabaseName { get; set; }
|
|
public string RowID { get; set; }
|
|
public string Severity { get; set; }
|
|
public string DateTime { get; set; }
|
|
public string ConnectID { get; set; }
|
|
public string DataType { get; set; }
|
|
public string SessionNumber { get; set; }
|
|
public string DataStructure { get; set; }
|
|
public string DataString { get; set; }
|
|
public string Comment { get; set; }
|
|
public string SessionDataSplitCode { get; set; }
|
|
public string EventType { get; set; }
|
|
public string Metadata { get; set; }
|
|
public string Computer { get; set; }
|
|
public string PrimaryPort { get; set; }
|
|
public string Server { get; set; }
|
|
public string SecondaryPort { get; set; }
|
|
public string Application { get; set; }
|
|
public string UserName { get; set; }
|
|
}
|
|
}
|