20 lines
484 B
C#
20 lines
484 B
C#
// <copyright file="BackupOptions.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
|
|
public bool Database { get; set; }
|
|
}
|