SyncJobOptions.cs 627 B

12345678910111213141516171819
  1. using MediaBrowser.Model.Dlna;
  2. namespace MediaBrowser.Controller.Sync
  3. {
  4. public class SyncJobOptions<T>
  5. where T : AudioOptions, new ()
  6. {
  7. /// <summary>
  8. /// Gets or sets the conversion options.
  9. /// </summary>
  10. /// <value>The conversion options.</value>
  11. public T ConversionOptions { get; set; }
  12. /// <summary>
  13. /// Gets or sets a value indicating whether this instance is converting.
  14. /// </summary>
  15. /// <value><c>true</c> if this instance is converting; otherwise, <c>false</c>.</value>
  16. public bool IsConverting { get; set; }
  17. }
  18. }