Files
pgsql-jellyfin/MediaBrowser.Controller/SystemBackupService/BackupRestoreRequestDto.cs
T

20 lines
617 B
C#

// <copyright file="BackupRestoreRequestDto.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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; }
}