namespace MediaBrowser.Model.Dlna
{
///
/// The playback error code.
///
public enum PlaybackErrorCode
{
///
/// Playback of the item is not allowed.
///
NotAllowed = 0,
///
/// No stream compatible with the device profile was found.
///
NoCompatibleStream = 1,
///
/// The rate limit has been exceeded.
///
RateLimitExceeded = 2
}
}