mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
23 lines
563 B
C#
23 lines
563 B
C#
using System.ComponentModel;
|
|
|
|
namespace API.Entities.Enums
|
|
{
|
|
public enum ServerSettingKey
|
|
{
|
|
[Description("TaskScan")]
|
|
TaskScan = 0,
|
|
[Description("CacheDirectory")]
|
|
CacheDirectory = 1,
|
|
[Description("TaskBackup")]
|
|
TaskBackup = 2,
|
|
[Description("LoggingLevel")]
|
|
LoggingLevel = 3,
|
|
[Description("Port")]
|
|
Port = 4,
|
|
[Description("BackupDirectory")]
|
|
BackupDirectory = 5,
|
|
[Description("AllowStatCollection")]
|
|
AllowStatCollection = 6,
|
|
|
|
}
|
|
} |