Add XML docs to small entity interfaces and remove CS1591 suppressions

This commit is contained in:
mbastian77
2026-07-15 16:07:56 +02:00
parent b6882c86dc
commit 997093ae3a
5 changed files with 38 additions and 11 deletions
+14 -2
View File
@@ -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
}
}