diff options
| author | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:07:56 +0200 |
|---|---|---|
| committer | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:07:56 +0200 |
| commit | 997093ae3a800ea06e41523d0407de570eaaa4e6 (patch) | |
| tree | 91b1e82073914b2ee04dbcfea89e7ee91b81cfa5 /MediaBrowser.Controller/Entities/SourceType.cs | |
| parent | b6882c86dccfdda94991f0ed978c6f0d0fe4c4ea (diff) | |
Add XML docs to small entity interfaces and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Controller/Entities/SourceType.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/SourceType.cs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/SourceType.cs b/MediaBrowser.Controller/Entities/SourceType.cs index be19e1bdae..97aa22dc04 100644 --- a/MediaBrowser.Controller/Entities/SourceType.cs +++ b/MediaBrowser.Controller/Entities/SourceType.cs @@ -1,11 +1,23 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Controller.Entities { + /// <summary> + /// The source of an item. + /// </summary> public enum SourceType { + /// <summary> + /// The item comes from a library. + /// </summary> Library = 0, + + /// <summary> + /// The item comes from a channel. + /// </summary> Channel = 1, + + /// <summary> + /// The item comes from live TV. + /// </summary> LiveTV = 2 } } |
