DeviceIcon.cs 408 B

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