Files
SPT-Server-Build/Libraries/Core/Models/Spt/Config/BackupConfig.cs
T
2025-02-07 19:36:17 +00:00

59 lines
906 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Spt.Config;
public record BackupConfig : BaseConfig
{
[JsonPropertyName("kind")]
public string Kind
{
get;
set;
} = "spt-backup";
[JsonPropertyName("enabled")]
public bool Enabled
{
get;
set;
}
[JsonPropertyName("maxBackups")]
public int MaxBackups
{
get;
set;
}
[JsonPropertyName("directory")]
public string Directory
{
get;
set;
}
[JsonPropertyName("backupInterval")]
public BackupConfigInterval BackupInterval
{
get;
set;
}
}
public record BackupConfigInterval
{
[JsonPropertyName("enabled")]
public bool Enabled
{
get;
set;
}
[JsonPropertyName("intervalMinutes")]
public int IntervalMinutes
{
get;
set;
}
}