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