aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Dlna/Common/DeviceIcon.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Dlna/Common/DeviceIcon.cs')
-rw-r--r--MediaBrowser.Dlna/Common/DeviceIcon.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.Dlna/Common/DeviceIcon.cs b/MediaBrowser.Dlna/Common/DeviceIcon.cs
deleted file mode 100644
index bec10dcc5..000000000
--- a/MediaBrowser.Dlna/Common/DeviceIcon.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-
-namespace MediaBrowser.Dlna.Common
-{
- public class DeviceIcon
- {
- public string Url { get; set; }
-
- public string MimeType { get; set; }
-
- public int Width { get; set; }
-
- public int Height { get; set; }
-
- public string Depth { get; set; }
-
- public override string ToString()
- {
- return string.Format("{0}x{1}", Height, Width);
- }
- }
-}