19 lines
572 B
C#
19 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
namespace EonaCat.Logger.EonaCatCoreLogger
|
|
{
|
|
public class XmlFileLoggerOptions
|
|
{
|
|
public string LogDirectory { get; set; } = "Logs";
|
|
public string FileName { get; set; } = "log.xml";
|
|
public bool IsEnabled { get; set; } = true;
|
|
public bool IncludeCorrelationId { get; set; }
|
|
}
|
|
|
|
}
|