2025-05-19 03:39:04 +03:00
|
|
|
namespace Jellyfin.Server.Implementations.FullSystemBackup;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defines the optional contents of the backup archive.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal class BackupOptions
|
|
|
|
|
{
|
|
|
|
|
public bool Metadata { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Trickplay { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool Subtitles { get; set; }
|
2025-06-04 01:49:41 +03:00
|
|
|
|
|
|
|
|
public bool Database { get; set; }
|
2025-05-19 03:39:04 +03:00
|
|
|
}
|