Added AudioInfo to DTOBaseItem

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-20 08:09:42 -04:00
parent d776238e6b
commit da23355fcc
4 changed files with 36 additions and 4 deletions

View File

@@ -0,0 +1,14 @@

namespace MediaBrowser.Model.DTO
{
public class AudioInfo
{
public int BitRate { get; set; }
public int Channels { get; set; }
public string Artist { get; set; }
public string Album { get; set; }
public string AlbumArtist { get; set; }
public string Composer { get; set; }
}
}

View File

@@ -90,6 +90,8 @@ namespace MediaBrowser.Model.DTO
public ItemSpecialCounts SpecialCounts { get; set; }
public AudioInfo AudioInfo { get; set; }
public bool IsType(Type type)
{
return IsType(type.Name);