From f52373609eac871c2883e1052020ff5327b19707 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Nov 2016 18:34:16 -0400 Subject: move classes to portable project --- Emby.Server.Implementations/Sync/SyncJobOptions.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Emby.Server.Implementations/Sync/SyncJobOptions.cs (limited to 'Emby.Server.Implementations/Sync/SyncJobOptions.cs') diff --git a/Emby.Server.Implementations/Sync/SyncJobOptions.cs b/Emby.Server.Implementations/Sync/SyncJobOptions.cs new file mode 100644 index 0000000000..8e4d8e2edc --- /dev/null +++ b/Emby.Server.Implementations/Sync/SyncJobOptions.cs @@ -0,0 +1,18 @@ +using MediaBrowser.Model.Dlna; + +namespace Emby.Server.Implementations.Sync +{ + public class SyncJobOptions + { + /// + /// Gets or sets the conversion options. + /// + /// The conversion options. + public DeviceProfile DeviceProfile { get; set; } + /// + /// Gets or sets a value indicating whether this instance is converting. + /// + /// true if this instance is converting; otherwise, false. + public bool IsConverting { get; set; } + } +} -- cgit v1.2.3