aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/SystemBackupService/BackupRestoreRequestDto.cs
blob: 263fa00c8d0c27785fe251711862d64ba008c172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
}