2012-07-16 16:50:44 +00:00
|
|
|
|
|
2012-07-12 06:55:27 +00:00
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
|
{
|
|
|
|
|
public class Audio : BaseItem
|
|
|
|
|
{
|
2012-08-10 14:58:53 +00:00
|
|
|
|
public int BitRate { get; set; }
|
|
|
|
|
public int Channels { get; set; }
|
|
|
|
|
public int SampleRate { get; set; }
|
2012-08-20 02:05:55 +00:00
|
|
|
|
|
|
|
|
|
public string Artist { get; set; }
|
|
|
|
|
public string Album { get; set; }
|
|
|
|
|
public string AlbumArtist { get; set; }
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|