1
0
mirror of https://github.com/romanlryji/EventLogLoader.git synced 2025-12-07 23:23:44 +02:00

C# application

This commit is contained in:
Roman
2019-10-02 11:18:07 +03:00
parent 2f830f19af
commit 2aaa26f0c1
35 changed files with 6197 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
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; }
}
}