ImageList.cs 875 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. namespace Phihong_EVSE_UI_Tool
  2. {
  3. public class ImageList
  4. {
  5. public int Index
  6. {
  7. get;
  8. set;
  9. }
  10. public string FileName
  11. {
  12. get;
  13. set;
  14. }
  15. public byte PixelWidth
  16. {
  17. get;
  18. set;
  19. }
  20. public byte PixelHeight
  21. {
  22. get;
  23. set;
  24. }
  25. public byte[] Pixels
  26. {
  27. get;
  28. set;
  29. }
  30. public ImageList()
  31. {
  32. ;
  33. }
  34. public ImageList(int index, string fileName, byte pixelWidth, byte pixelHeight, byte[] pixels)
  35. {
  36. this.Index = index;
  37. this.FileName = fileName;
  38. this.PixelWidth = pixelWidth;
  39. this.PixelHeight = pixelHeight;
  40. this.Pixels = pixels;
  41. }
  42. }
  43. }