aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Audio.cs
blob: fd202b6c3f4bc395f5909b0613b6b4a55dbf2c15 (plain)
1
2
3
4
5
6
7
8
9
10
namespace MediaBrowser.Model.Entities
{
    public class Audio : BaseItem
    {
        public int BitRate { get; set; }
        public int Channels { get; set; }
        public int SampleRate { get; set; }
    }
}