jellyfin/MediaBrowser.Model/Entities/AudioStream.cs
LukePulverenti Luke Pulverenti luke pulverenti 6c9ecb6d2e Moved a few classes into their own files
2012-09-10 21:37:40 -04:00

27 lines
562 B
C#

using ProtoBuf;
namespace MediaBrowser.Model.Entities
{
[ProtoContract]
public class AudioStream
{
[ProtoMember(1)]
public string Codec { get; set; }
[ProtoMember(2)]
public string Language { get; set; }
[ProtoMember(3)]
public int BitRate { get; set; }
[ProtoMember(4)]
public int Channels { get; set; }
[ProtoMember(5)]
public int SampleRate { get; set; }
[ProtoMember(6)]
public bool IsDefault { get; set; }
}
}