jellyfin/MediaBrowser.Server.Implementations/Sync/SyncJobOptions.cs

19 lines
605 B
C#
Raw Normal View History

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