Files
EonaCat.LogStack/EonaCat.LogStack.LogClient/LogCentralOptions.cs
2026-02-27 21:12:55 +01:00

19 lines
661 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace EonaCat.LogStack.LogClient
{
public class LogCentralOptions
{
public string ServerUrl { get; set; } = "http://localhost:5000";
public string ApiKey { get; set; } = string.Empty;
public string ApplicationName { get; set; } = string.Empty;
public string ApplicationVersion { get; set; } = "1.0.0";
public string Environment { get; set; } = "Production";
public int BatchSize { get; set; } = 50;
public int FlushIntervalSeconds { get; set; } = 5;
public bool EnableFallbackLogging { get; set; } = true;
}
}