rework handling of original quality

This commit is contained in:
Luke Pulverenti
2015-03-15 13:50:47 -04:00
parent c8dc67d980
commit 72a5383c70
12 changed files with 103 additions and 76 deletions

View File

@@ -0,0 +1,19 @@
using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Controller.Sync
{
public class SyncJobOptions<T>
where T : AudioOptions, new ()
{
/// <summary>
/// Gets or sets the conversion options.
/// </summary>
/// <value>The conversion options.</value>
public T ConversionOptions { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is converting.
/// </summary>
/// <value><c>true</c> if this instance is converting; otherwise, <c>false</c>.</value>
public bool IsConverting { get; set; }
}
}