DeviceIcon.cs 405 B

123456789101112131415161718192021
  1. namespace Emby.Dlna.Common
  2. {
  3. public class DeviceIcon
  4. {
  5. public string Url { get; set; }
  6. public string MimeType { get; set; }
  7. public int Width { get; set; }
  8. public int Height { get; set; }
  9. public string Depth { get; set; }
  10. public override string ToString()
  11. {
  12. return string.Format("{0}x{1}", Height, Width);
  13. }
  14. }
  15. }