From 8ac2d1f7bccfb265378888ec265304922154c90b Mon Sep 17 00:00:00 2001 From: mbastian77 Date: Sat, 18 Jul 2026 10:08:55 +0200 Subject: Add XML docs to small model enums and remove CS1591 suppressions --- MediaBrowser.Model/Library/PlayAccess.cs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Model/Library') diff --git a/MediaBrowser.Model/Library/PlayAccess.cs b/MediaBrowser.Model/Library/PlayAccess.cs index a2f263ce54..22daaf7254 100644 --- a/MediaBrowser.Model/Library/PlayAccess.cs +++ b/MediaBrowser.Model/Library/PlayAccess.cs @@ -1,10 +1,18 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Model.Library { + /// + /// The play access of an item. + /// public enum PlayAccess { + /// + /// The item can be played. + /// Full = 0, + + /// + /// The item cannot be played. + /// None = 1 } } -- cgit v1.2.3