PluralKit/PluralKit.Core/CoreConfig.cs

16 lines
484 B
C#
Raw Normal View History

using Serilog.Events;
namespace PluralKit.Core
{
public class CoreConfig
{
public string Database { get; set; }
2019-07-15 19:02:50 +00:00
public string SentryUrl { get; set; }
2019-07-16 21:34:22 +00:00
public string InfluxUrl { get; set; }
public string InfluxDb { get; set; }
2019-07-18 15:13:42 +00:00
public string LogDir { get; set; }
2020-06-13 20:39:19 +00:00
public LogEventLevel ConsoleLogLevel { get; set; } = LogEventLevel.Debug;
public LogEventLevel FileLogLevel { get; set; } = LogEventLevel.Information;
}
}