using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMFConverter.Gdi { /// /// Graphics Device Interface - Represents a Palette object. /// public interface IGdiPalette : IGdiObject { #region Properties /// /// Object Version. /// /// int Version { get; } /// /// Object Entries. /// /// int[] Entries { get; } #endregion } }