SyncDialogOptions.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncDialogOptions
  5. {
  6. /// <summary>
  7. /// Gets or sets the targets.
  8. /// </summary>
  9. /// <value>The targets.</value>
  10. public SyncTarget[] Targets { get; set; }
  11. /// <summary>
  12. /// Gets or sets the options.
  13. /// </summary>
  14. /// <value>The options.</value>
  15. public SyncJobOption[] Options { get; set; }
  16. /// <summary>
  17. /// Gets or sets the quality options.
  18. /// </summary>
  19. /// <value>The quality options.</value>
  20. public SyncQualityOption[] QualityOptions { get; set; }
  21. /// <summary>
  22. /// Gets or sets the profile options.
  23. /// </summary>
  24. /// <value>The profile options.</value>
  25. public SyncProfileOption[] ProfileOptions { get; set; }
  26. public SyncDialogOptions()
  27. {
  28. Targets = new SyncTarget[] { };
  29. Options = new SyncJobOption[] { };
  30. QualityOptions = new SyncQualityOption[] { };
  31. ProfileOptions = new SyncProfileOption[] { };
  32. }
  33. }
  34. }