diff options
Diffstat (limited to 'MediaBrowser.Controller/Dlna/DeviceProfile.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/DeviceProfile.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Dlna/DeviceProfile.cs b/MediaBrowser.Controller/Dlna/DeviceProfile.cs index d0c2dcc1a..5950698fb 100644 --- a/MediaBrowser.Controller/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Controller/Dlna/DeviceProfile.cs @@ -1,4 +1,5 @@ -using MediaBrowser.Model.Entities; +using MediaBrowser.Model.Dlna; +using MediaBrowser.Model.Entities; using System; using System.Collections.Generic; using System.Linq; @@ -17,9 +18,11 @@ namespace MediaBrowser.Controller.Dlna public string Name { get; set; } [XmlIgnore] - [IgnoreDataMember] public string Id { get; set; } + [XmlIgnore] + public DeviceProfileType ProfileType { get; set; } + /// <summary> /// Gets or sets the identification. /// </summary> |
