diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-11-16 17:09:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 17:09:22 -0500 |
| commit | 355c0c802fd64ca707e99833c722f9ccd028872e (patch) | |
| tree | ba26aff69b092f5ab0c73389597e94f7087549f8 /Emby.Dlna/ContentDirectory/ServerItem.cs | |
| parent | dc0e353b968e80b9532638f5a752f89572566d82 (diff) | |
| parent | c1b3f2c136201cc5d260270a427333ca79b004f2 (diff) | |
Merge pull request #4138 from BaronGreenback/Comment3
DLNA ContentManager - static and commented.
Diffstat (limited to 'Emby.Dlna/ContentDirectory/ServerItem.cs')
| -rw-r--r-- | Emby.Dlna/ContentDirectory/ServerItem.cs | 13 |
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; } } } |
