aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemResult.cs
diff options
context:
space:
mode:
authormbastian77 <michael.bastian@visop.de>2026-07-15 16:02:12 +0200
committermbastian77 <michael.bastian@visop.de>2026-07-15 16:02:12 +0200
commit0d3cf0169e198b51d90f106317a87116ac5e179e (patch)
tree6ee12133b0cac00c26fe101fb2e8c34292ede6ef /MediaBrowser.Controller/Channels/ChannelItemResult.cs
parentb6882c86dccfdda94991f0ed978c6f0d0fe4c4ea (diff)
Add XML docs to small channel types and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Controller/Channels/ChannelItemResult.cs')
-rw-r--r--MediaBrowser.Controller/Channels/ChannelItemResult.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemResult.cs b/MediaBrowser.Controller/Channels/ChannelItemResult.cs
index ca7721991d..9557c91964 100644
--- a/MediaBrowser.Controller/Channels/ChannelItemResult.cs
+++ b/MediaBrowser.Controller/Channels/ChannelItemResult.cs
@@ -1,19 +1,29 @@
-#pragma warning disable CS1591
-
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
+ /// <summary>
+ /// The result of a channel item query.
+ /// </summary>
public class ChannelItemResult
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ChannelItemResult"/> class.
+ /// </summary>
public ChannelItemResult()
{
Items = Array.Empty<ChannelItemInfo>();
}
+ /// <summary>
+ /// Gets or sets the items.
+ /// </summary>
public IReadOnlyList<ChannelItemInfo> Items { get; set; }
+ /// <summary>
+ /// Gets or sets the total record count.
+ /// </summary>
public int? TotalRecordCount { get; set; }
}
}