Add Full system backup feature (#13945)

This commit is contained in:
JPVenson
2025-05-19 03:39:04 +03:00
committed by GitHub
parent cdbf4752b9
commit fe2596dc0e
21 changed files with 841 additions and 21 deletions

View File

@@ -0,0 +1,15 @@
using System;
using MediaBrowser.Common.Configuration;
namespace MediaBrowser.Controller.SystemBackupService;
/// <summary>
/// Defines properties used to start a restore process.
/// </summary>
public class BackupRestoreRequestDto
{
/// <summary>
/// Gets or Sets the name of the backup archive to restore from. Must be present in <see cref="IApplicationPaths.BackupPath"/>.
/// </summary>
public required string ArchiveFileName { get; set; }
}