aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/DeviceIcon.cs
blob: c3f7fa8aaa576c5fb4331c5f3d5cd4b0e4362d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#pragma warning disable CS1591

using System.Globalization;

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; }

        /// <inheritdoc />
        public override string ToString()
        {
            return string.Format(
                CultureInfo.InvariantCulture,
                "{0}x{1}",
                Height,
                Width);
        }
    }
}