mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
16 lines
464 B
C#
16 lines
464 B
C#
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; }
|
|
}
|