2022-09-10 21:31:15 +04:30

10 lines
267 B
C#

namespace BuildingBlocks.Logging
{
public class LogOptions
{
public string Level { get; set; }
public ElasticOptions Elastic { get; set; }
public FileOptions File { get; set; }
public string LogTemplate { get; set; }
}
}