AudioStream.cs 562 B

1234567891011121314151617181920212223242526
  1. using ProtoBuf;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. [ProtoContract]
  5. public class AudioStream
  6. {
  7. [ProtoMember(1)]
  8. public string Codec { get; set; }
  9. [ProtoMember(2)]
  10. public string Language { get; set; }
  11. [ProtoMember(3)]
  12. public int BitRate { get; set; }
  13. [ProtoMember(4)]
  14. public int Channels { get; set; }
  15. [ProtoMember(5)]
  16. public int SampleRate { get; set; }
  17. [ProtoMember(6)]
  18. public bool IsDefault { get; set; }
  19. }
  20. }