mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 17:24:05 +01:00
14 lines
372 B
C#
14 lines
372 B
C#
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public class Audio : BaseItem
|
|
{
|
|
public int BitRate { get; set; }
|
|
public int Channels { get; set; }
|
|
public int SampleRate { get; set; }
|
|
|
|
public string Artist { get; set; }
|
|
public string Album { get; set; }
|
|
public string AlbumArtist { get; set; }
|
|
}
|
|
}
|