aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/FullSystemBackup/BackupOptions.cs
blob: 706f009ac2df05fdc869d3b81533afe4ee652316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
}