2023-01-03 22:59:47 +03:30

9 lines
209 B
C#

namespace BuildingBlocks.Logging;
public class ElasticOptions
{
public bool Enabled { get; set; }
public string ElasticServiceUrl { get; set; }
public string ElasticSearchIndex { get; set; }
}