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, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Dlna/Common/DeviceIcon.cs b/MediaBrowser.Dlna/Common/DeviceIcon.cs
new file mode 100644
index 000000000..bec10dcc5
--- /dev/null
+++ b/MediaBrowser.Dlna/Common/DeviceIcon.cs
@@ -0,0 +1,21 @@
+
+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);
+ }
+ }
+}