aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2015-03-19 13:21:35 -0400
committerLuke <luke.pulverenti@gmail.com>2015-03-19 13:21:35 -0400
commit9926be0d9de688c04065c916e44ada4177b38a80 (patch)
tree15338144a143948ffbee316641757e81489a7354 /MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs
parentb756e677d733992c2033bdd369980a37e17609e4 (diff)
parent0564d454e5ad4f59702aa9022af6bb8fd064a9ff (diff)
Merge pull request #1043 from MediaBrowser/dev
3.0.5557.0
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs b/MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs
new file mode 100644
index 0000000000..cb8141c895
--- /dev/null
+++ b/MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs
@@ -0,0 +1,18 @@
+using MediaBrowser.Model.Dlna;
+
+namespace MediaBrowser.Server.Implementations.Sync
+{
+ public class SyncJobOptions
+ {
+ /// <summary>
+ /// Gets or sets the conversion options.
+ /// </summary>
+ /// <value>The conversion options.</value>
+ public DeviceProfile DeviceProfile { 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; }
+ }
+}