You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
569 B
26 lines
569 B
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
{
|
|
/// <summary>
|
|
/// Class MusicAlbumDisc
|
|
/// </summary>
|
|
public class MusicAlbumDisc : Folder
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the display type of the media.
|
|
/// </summary>
|
|
/// <value>The display type of the media.</value>
|
|
public override string DisplayMediaType
|
|
{
|
|
get
|
|
{
|
|
return "Disc";
|
|
}
|
|
set
|
|
{
|
|
base.DisplayMediaType = value;
|
|
}
|
|
}
|
|
}
|
|
}
|