using System;
using MediaBrowser.Common.Configuration;
namespace MediaBrowser.Controller.SystemBackupService;
///
/// Defines properties used to start a restore process.
///
public class BackupRestoreRequestDto
{
///
/// Gets or Sets the name of the backup archive to restore from. Must be present in .
///
public required string ArchiveFileName { get; set; }
}