PlaybackErrorCode.cs 171 B

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