blob: cb8141c8952676a84ecff76255c0a24f4119a6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
}
}
|