aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/SystemBackupService/BackupOptionsDto.cs
blob: fc5a109f1a3f808c891c8356c88065b4f34fe17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;

namespace MediaBrowser.Controller.SystemBackupService;

/// <summary>
/// Defines the optional contents of the backup archive.
/// </summary>
public class BackupOptionsDto
{
    /// <summary>
    /// Gets or sets a value indicating whether the archive contains the Metadata contents.
    /// </summary>
    public bool Metadata { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the archive contains the Trickplay contents.
    /// </summary>
    public bool Trickplay { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the archive contains the Subtitle contents.
    /// </summary>
    public bool Subtitles { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the archive contains the Database contents.
    /// </summary>
    public bool Database { get; set; } = true;
}