aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceIcon.cs
blob: 3a91b952ecf25098881f3b76f4ee88601265918d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace Emby.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);
        }
    }
}