jellyfin/MediaBrowser.Model/Entities/Audio.cs

15 lines
367 B
C#
Raw Normal View History


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