SyncJobOptions.cs 597 B

123456789101112131415161718
  1. using MediaBrowser.Model.Dlna;
  2. namespace Emby.Server.Implementations.Sync
  3. {
  4. public class SyncJobOptions
  5. {
  6. /// <summary>
  7. /// Gets or sets the conversion options.
  8. /// </summary>
  9. /// <value>The conversion options.</value>
  10. public DeviceProfile DeviceProfile { get; set; }
  11. /// <summary>
  12. /// Gets or sets a value indicating whether this instance is converting.
  13. /// </summary>
  14. /// <value><c>true</c> if this instance is converting; otherwise, <c>false</c>.</value>
  15. public bool IsConverting { get; set; }
  16. }
  17. }