PluralKit/PluralKit.Core/CoreConfig.cs

11 lines
288 B
C#
Raw Normal View History

namespace PluralKit
{
public class CoreConfig
{
public string Database { get; set; }
2019-07-15 21:02:50 +02:00
public string SentryUrl { get; set; }
2019-07-16 23:34:22 +02:00
public string InfluxUrl { get; set; }
public string InfluxDb { get; set; }
2019-07-18 17:13:42 +02:00
public string LogDir { get; set; }
}
}