
* feat: implement anonymous usage data collection Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
12 lines
No EOL
355 B
C#
12 lines
No EOL
355 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; }
|
|
public int Port { get; set; }
|
|
public bool AllowStatCollection { get; set; }
|
|
}
|
|
} |