MusicAlbumDisc.cs 569 B

12345678910111213141516171819202122232425
  1. 
  2. namespace MediaBrowser.Controller.Entities.Audio
  3. {
  4. /// <summary>
  5. /// Class MusicAlbumDisc
  6. /// </summary>
  7. public class MusicAlbumDisc : Folder
  8. {
  9. /// <summary>
  10. /// Gets or sets the display type of the media.
  11. /// </summary>
  12. /// <value>The display type of the media.</value>
  13. public override string DisplayMediaType
  14. {
  15. get
  16. {
  17. return "Disc";
  18. }
  19. set
  20. {
  21. base.DisplayMediaType = value;
  22. }
  23. }
  24. }
  25. }