mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03:00
11 lines
174 B
C#
11 lines
174 B
C#
|
|
|
|||
|
|
namespace MediaBrowser.Model.Dlna
|
|||
|
|
{
|
|||
|
|
public enum PlaybackErrorCode
|
|||
|
|
{
|
|||
|
|
NotAllowed = 0,
|
|||
|
|
NoCompatibleStream = 1,
|
|||
|
|
RateLimitExceeded = 2
|
|||
|
|
}
|
|||
|
|
}
|