You've already forked EventLogLoader
mirror of
https://github.com/romanlryji/EventLogLoader.git
synced 2025-12-07 23:23:44 +02:00
23 lines
670 B
C#
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();
|
|
}
|
|
}
|
|
}
|