PlaybackErrorCode.cs 170 B

123456789
  1. namespace MediaBrowser.Model.Dlna
  2. {
  3. public enum PlaybackErrorCode
  4. {
  5. NotAllowed = 0,
  6. NoCompatibleStream = 1,
  7. RateLimitExceeded = 2
  8. }
  9. }