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; } } }