using MediaBrowser.Model.Dlna;
namespace MediaBrowser.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; }
    }
}