Files
EonaCat.Logger/EonaCat.Logger/EonaCatCoreLogger/DiscordLoggerOptions.cs

13 lines
499 B
C#

namespace EonaCat.Logger.EonaCatCoreLogger
{
// 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.
public class DiscordLoggerOptions
{
public string WebhookUrl { get; set; }
public bool IsEnabled { get; set; } = true;
public bool IncludeCorrelationId { get; set; }
public int FlushIntervalSeconds { get; set; } = 5;
}
}