first commit
This commit is contained in:
15
Config/CleanerConfig.cs
Normal file
15
Config/CleanerConfig.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace HanaToolbox.Config;
|
||||
|
||||
public sealed class CleanerConfig
|
||||
{
|
||||
public bool Enabled { get; set; } = false;
|
||||
public int ScheduleHour { get; set; } = 3;
|
||||
public int ScheduleMinute { get; set; } = 0;
|
||||
|
||||
public string TenantBackupPath { get; set; } = "/hana/backup/tenant";
|
||||
public int TenantRetentionDays { get; set; } = 7;
|
||||
|
||||
/// <summary>One or more log backup directories. Each is cleaned with LogRetentionDays.</summary>
|
||||
public List<string> LogBackupPaths { get; set; } = [];
|
||||
public int LogRetentionDays { get; set; } = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user