2025-05-18 18:39:04 -06:00

14 lines
301 B
C#

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; }
}