using System.Globalization; namespace Emby.Dlna.Common { /// /// Defines the . /// public class DeviceIcon { /// /// Gets or sets the Url. /// public string Url { get; set; } = string.Empty; /// /// Gets or sets the MimeType. /// public string MimeType { get; set; } = string.Empty; /// /// Gets or sets the Width. /// public int Width { get; set; } /// /// Gets or sets the Height. /// public int Height { get; set; } /// /// Gets or sets the Depth. /// public string Depth { get; set; } = string.Empty; /// public override string ToString() { return string.Format(CultureInfo.InvariantCulture, "{0}x{1}", Height, Width); } } }