1
0
mirror of https://github.com/romanlryji/EventLogLoader.git synced 2025-12-05 23:18:25 +02:00
Files
EventLogLoader/EventLogApp/ElasticSearchFieldSynonymsClass.cs

27 lines
1.0 KiB
C#
Raw Normal View History

2019-10-02 11:18:07 +03:00
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; }
}
}