using System.Collections.Generic; using System.Drawing; namespace TEAMModelOS.SDK.PngQuant { public class QuantizedPalette { public QuantizedPalette(int size) { Colors = new List(); PixelIndex = new int[size]; } public IList Colors { get; private set; } public int[] PixelIndex { get; private set; } } }