SyncProfileOption.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. 
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncProfileOption
  5. {
  6. /// <summary>
  7. /// Gets or sets the name.
  8. /// </summary>
  9. /// <value>The name.</value>
  10. public string Name { get; set; }
  11. /// <summary>
  12. /// Gets or sets the description.
  13. /// </summary>
  14. /// <value>The description.</value>
  15. public string Description { get; set; }
  16. /// <summary>
  17. /// Gets or sets the identifier.
  18. /// </summary>
  19. /// <value>The identifier.</value>
  20. public string Id { get; set; }
  21. /// <summary>
  22. /// Gets or sets a value indicating whether this instance is default.
  23. /// </summary>
  24. /// <value><c>true</c> if this instance is default; otherwise, <c>false</c>.</value>
  25. public bool IsDefault { get; set; }
  26. /// <summary>
  27. /// Gets or sets a value indicating whether [enable quality options].
  28. /// </summary>
  29. /// <value><c>true</c> if [enable quality options]; otherwise, <c>false</c>.</value>
  30. public bool EnableQualityOptions { get; set; }
  31. public SyncProfileOption()
  32. {
  33. EnableQualityOptions = true;
  34. }
  35. }
  36. }