2015-03-15 17:50:47 +00:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
|
|
|
|
|
2016-11-03 22:34:16 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Sync
|
2015-03-15 17:50:47 +00:00
|
|
|
|
{
|
2015-03-15 19:10:27 +00:00
|
|
|
|
public class SyncJobOptions
|
2015-03-15 17:50:47 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the conversion options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The conversion options.</value>
|
2015-03-15 19:10:27 +00:00
|
|
|
|
public DeviceProfile DeviceProfile { get; set; }
|
2015-03-15 17:50:47 +00:00
|
|
|
|
/// <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; }
|
|
|
|
|
}
|
|
|
|
|
}
|