namespace MediaBrowser.Model.Sync
{
public class SyncQualityOption
{
///
/// Gets or sets the name.
///
/// The name.
public string Name { get; set; }
///
/// Gets or sets the description.
///
/// The description.
public string Description { get; set; }
///
/// Gets or sets the identifier.
///
/// The identifier.
public string Id { get; set; }
///
/// Gets or sets a value indicating whether this instance is default.
///
/// true if this instance is default; otherwise, false.
public bool IsDefault { get; set; }
///
/// Gets or sets a value indicating whether this instance is original quality.
///
/// true if this instance is original quality; otherwise, false.
public bool IsOriginalQuality { get; set; }
}
}