From d96d1f111994104c7672e2f64f64a92902458f41 Mon Sep 17 00:00:00 2001 From: mbastian77 Date: Wed, 15 Jul 2026 12:11:11 +0200 Subject: Add XML docs to small DLNA model types and remove CS1591 suppressions --- MediaBrowser.Model/Dlna/PlaybackErrorCode.cs | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/Dlna/PlaybackErrorCode.cs') diff --git a/MediaBrowser.Model/Dlna/PlaybackErrorCode.cs b/MediaBrowser.Model/Dlna/PlaybackErrorCode.cs index 300fab5c50..a28f422a2b 100644 --- a/MediaBrowser.Model/Dlna/PlaybackErrorCode.cs +++ b/MediaBrowser.Model/Dlna/PlaybackErrorCode.cs @@ -1,11 +1,23 @@ -#pragma warning disable CS1591 - 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 } } -- cgit v1.2.3