1
0
mirror of https://github.com/romanlryji/EventLogLoader.git synced 2025-12-07 23:23:44 +02:00
Files
EventLogLoader/EventLogApp/ConfigSetting.cs
2019-10-02 11:18:07 +03:00

23 lines
670 B
C#

using System.Collections.Generic;
namespace EventLogApp
{
public class ConfigSetting
{
public string ConnectionString { get; set; }
public string DBType { get; set; }
public int RepeatTime { get; set; }
public string ESIndexName { get; set; }
public bool ESUseSynonymsForFieldsNames { get; set; }
public ElasticSearchFieldSynonymsClass ESFieldSynonyms { get; set; }
public List<InfobaseSetting> Infobases { get; set; }
public ConfigSetting()
{
Infobases = new List<InfobaseSetting>();
ESFieldSynonyms = new ElasticSearchFieldSynonymsClass();
}
}
}