Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Spt/Config/BackupConfig.cs
T
2025-06-04 14:49:37 +01:00

62 lines
1.0 KiB
C#

using System.Text.Json.Serialization;
namespace SPTarkov.Server.Core.Models.Spt.Config;
public record BackupConfig : BaseConfig
{
[JsonPropertyName("kind")]
public override string Kind
{
get;
set;
} = "spt-backup";
[JsonPropertyName("enabled")]
public required bool Enabled
{
get;
set;
}
[JsonPropertyName("maxBackups")]
public int MaxBackups
{
get;
set;
}
[JsonPropertyName("directory")]
public string Directory
{
get;
set;
} = string.Empty;
[JsonPropertyName("backupInterval")]
public required BackupConfigInterval BackupInterval
{
get;
set;
}
}
public record BackupConfigInterval
{
[JsonExtensionData]
public Dictionary<string, object> ExtensionData { get; set; }
[JsonPropertyName("enabled")]
public bool Enabled
{
get;
set;
}
[JsonPropertyName("intervalMinutes")]
public int IntervalMinutes
{
get;
set;
}
}