BackupOptions.cs 301 B

12345678910111213
  1. namespace Jellyfin.Server.Implementations.FullSystemBackup;
  2. /// <summary>
  3. /// Defines the optional contents of the backup archive.
  4. /// </summary>
  5. internal class BackupOptions
  6. {
  7. public bool Metadata { get; set; }
  8. public bool Trickplay { get; set; }
  9. public bool Subtitles { get; set; }
  10. }