using System; namespace ScreenConnect; public interface IBitmapData { PixelModel PixelModel { get; } int Width { get; } int Height { get; } int Stride { get; } IntPtr Scan0 { get; } }