namespace ScreenConnect; public class PixelModel : PixelInfo { public bool CanBlockCopyBgr32 { get; } public PixelModel(int bitsPerPixel, int bitsPerChannel = 0, bool canBlockCopyBgr32 = false) : base(bitsPerPixel, bitsPerChannel) { CanBlockCopyBgr32 = canBlockCopyBgr32; } }