BackupRestoreRequestDto.cs 464 B

123456789101112131415
  1. using System;
  2. using MediaBrowser.Common.Configuration;
  3. namespace MediaBrowser.Controller.SystemBackupService;
  4. /// <summary>
  5. /// Defines properties used to start a restore process.
  6. /// </summary>
  7. public class BackupRestoreRequestDto
  8. {
  9. /// <summary>
  10. /// Gets or Sets the name of the backup archive to restore from. Must be present in <see cref="IApplicationPaths.BackupPath"/>.
  11. /// </summary>
  12. public required string ArchiveFileName { get; set; }
  13. }