PlaybackErrorCode.cs 174 B

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