mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
10 lines
263 B
C#
10 lines
263 B
C#
namespace API.DTOs
|
|
{
|
|
public class ServerSettingDto
|
|
{
|
|
public string CacheDirectory { get; set; }
|
|
public string TaskScan { get; set; }
|
|
public string LoggingLevel { get; set; }
|
|
public string TaskBackup { get; set; }
|
|
}
|
|
} |