BackupOptionsDto.cs 700 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace MediaBrowser.Controller.SystemBackupService;
  3. /// <summary>
  4. /// Defines the optional contents of the backup archive.
  5. /// </summary>
  6. public class BackupOptionsDto
  7. {
  8. /// <summary>
  9. /// Gets or sets a value indicating whether the archive contains the Metadata contents.
  10. /// </summary>
  11. public bool Metadata { get; set; }
  12. /// <summary>
  13. /// Gets or sets a value indicating whether the archive contains the Trickplay contents.
  14. /// </summary>
  15. public bool Trickplay { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether the archive contains the Subtitle contents.
  18. /// </summary>
  19. public bool Subtitles { get; set; }
  20. }