using MediaBrowser.Model.Dlna; namespace MediaBrowser.Controller.Sync { public class SyncJobOptions where T : AudioOptions, new () { /// /// Gets or sets the conversion options. /// /// The conversion options. public T ConversionOptions { 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; } } }