using System;
namespace MediaBrowser.Controller.SystemBackupService;
///
/// Defines the optional contents of the backup archive.
///
public class BackupOptionsDto
{
///
/// Gets or sets a value indicating whether the archive contains the Metadata contents.
///
public bool Metadata { get; set; }
///
/// Gets or sets a value indicating whether the archive contains the Trickplay contents.
///
public bool Trickplay { get; set; }
///
/// Gets or sets a value indicating whether the archive contains the Subtitle contents.
///
public bool Subtitles { get; set; }
}