mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 12:58:28 +01:00
Add Full system backup feature (#13945)
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user