mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
Add Full system backup feature (#13945)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Controller.SystemBackupService;
|
||||
|
||||
/// <summary>
|
||||
/// Defines the optional contents of the backup archive.
|
||||
/// </summary>
|
||||
public class BackupOptionsDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the archive contains the Metadata contents.
|
||||
/// </summary>
|
||||
public bool Metadata { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the archive contains the Trickplay contents.
|
||||
/// </summary>
|
||||
public bool Trickplay { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the archive contains the Subtitle contents.
|
||||
/// </summary>
|
||||
public bool Subtitles { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user