using System; using System.Collections.Generic; using System.Linq; using System.Text; using gr2lib.core.coretypes.implementation; namespace gr2lib.core.interfaces { public interface IMIPLevel : INativePointer { int Stride { get; set; } PixelList Pixels { get; set; } } }