SubtitleStream.cs 352 B

1234567891011121314151617
  1. using ProtoBuf;
  2. namespace MediaBrowser.Model.Entities
  3. {
  4. [ProtoContract]
  5. public class SubtitleStream
  6. {
  7. [ProtoMember(1)]
  8. public string Language { get; set; }
  9. [ProtoMember(2)]
  10. public bool IsDefault { get; set; }
  11. [ProtoMember(3)]
  12. public bool IsForced { get; set; }
  13. }
  14. }