public class BorderInformation { // Randstärke in Pixeln public float BorderWidth; // Erstes schwarzes Pixel in der linken oberen Ecke public Pair firstBlackPixel; public BorderInformation(float width, Pair firstBlack) { BorderWidth = width; firstBlackPixel = firstBlack; } }