namespace MediaBrowser.Controller.Entities.Audio
{
///
/// Class MusicAlbumDisc
///
public class MusicAlbumDisc : Folder
{
///
/// Gets or sets the display type of the media.
///
/// The display type of the media.
public override string DisplayMediaType
{
get
{
return "Disc";
}
set
{
base.DisplayMediaType = value;
}
}
}
}