SyncQualityOption.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. 
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncQualityOption
  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 this instance is original quality.
  28. /// </summary>
  29. /// <value><c>true</c> if this instance is original quality; otherwise, <c>false</c>.</value>
  30. public bool IsOriginalQuality { get; set; }
  31. }
  32. }