2025-05-18 18:39:04 -06:00

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; }
}