Code cleanup. Implemented ability to schedule Library Backups.
This commit is contained in:
parent
83b9394b17
commit
b4ee16d8d1
35 changed files with 217 additions and 91 deletions
|
@ -1,11 +1,20 @@
|
|||
namespace API.Entities.Enums
|
||||
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,
|
||||
Port = 4
|
||||
[Description("Port")]
|
||||
Port = 4,
|
||||
[Description("BackupDirectory")]
|
||||
BackupDirectory = 5
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue