diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-15 13:50:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-15 13:50:47 -0400 |
| commit | 72a5383c703b86286cf61decb92b987b48b50d3c (patch) | |
| tree | ea5093857e4a84311ce4683e44cd4cc6b36faf68 /MediaBrowser.Controller/Sync/SyncJobOptions.cs | |
| parent | c8dc67d980afcd071609a3697478ade9ae439399 (diff) | |
rework handling of original quality
Diffstat (limited to 'MediaBrowser.Controller/Sync/SyncJobOptions.cs')
| -rw-r--r-- | MediaBrowser.Controller/Sync/SyncJobOptions.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Sync/SyncJobOptions.cs b/MediaBrowser.Controller/Sync/SyncJobOptions.cs new file mode 100644 index 000000000..abd6d2553 --- /dev/null +++ b/MediaBrowser.Controller/Sync/SyncJobOptions.cs @@ -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; } + } +} |
