12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- namespace Phihong_EVSE_UI_Tool
- {
- public class ImageList
- {
- public int Index
- {
- get;
- set;
- }
- public string FileName
- {
- get;
- set;
- }
- public byte PixelWidth
- {
- get;
- set;
- }
- public byte PixelHeight
- {
- get;
- set;
- }
- public byte[] Pixels
- {
- get;
- set;
- }
- public ImageList()
- {
- ;
- }
- public ImageList(int index, string fileName, byte pixelWidth, byte pixelHeight, byte[] pixels)
- {
- this.Index = index;
- this.FileName = fileName;
- this.PixelWidth = pixelWidth;
- this.PixelHeight = pixelHeight;
- this.Pixels = pixels;
- }
- }
- }
|