aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ContentDirectory/ServerItem.cs
diff options
context:
space:
mode:
authorGreenback <jimcartlidge@yahoo.co.uk>2020-11-19 18:27:18 +0000
committerGreenback <jimcartlidge@yahoo.co.uk>2020-11-19 18:27:18 +0000
commita3e47f3e4eed60b227359e8ae59c8a6659a1942c (patch)
treee5af2d5c0e658505f397ed48abc4e5870f3857d7 /Emby.Dlna/ContentDirectory/ServerItem.cs
parent60a6627140a83408b8157b9543e62ff48918ef7a (diff)
parente71ab2afb1fda7521c61f860654fd94e3bd5e3e8 (diff)
Updated to latest Unstable.
Diffstat (limited to 'Emby.Dlna/ContentDirectory/ServerItem.cs')
-rw-r--r--Emby.Dlna/ContentDirectory/ServerItem.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Emby.Dlna/ContentDirectory/ServerItem.cs b/Emby.Dlna/ContentDirectory/ServerItem.cs
index e40605414..34244000c 100644
--- a/Emby.Dlna/ContentDirectory/ServerItem.cs
+++ b/Emby.Dlna/ContentDirectory/ServerItem.cs
@@ -4,8 +4,15 @@ using MediaBrowser.Controller.Entities;
namespace Emby.Dlna.ContentDirectory
{
+ /// <summary>
+ /// Defines the <see cref="ServerItem" />.
+ /// </summary>
internal class ServerItem
{
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ServerItem"/> class.
+ /// </summary>
+ /// <param name="item">The <see cref="BaseItem"/>.</param>
public ServerItem(BaseItem item)
{
Item = item;
@@ -16,8 +23,14 @@ namespace Emby.Dlna.ContentDirectory
}
}
+ /// <summary>
+ /// Gets or sets the underlying base item.
+ /// </summary>
public BaseItem Item { get; set; }
+ /// <summary>
+ /// Gets or sets the DLNA item type.
+ /// </summary>
public StubType? StubType { get; set; }
}
}