namespace LindtLeerformPlugin.Models; public class CellResult { public int Index { get; set; } /// True when no chocolate blobs were detected inside this cell (the form is empty as expected). public bool IsGood { get; set; } /// Number of contours inside the cell that passed the area filter. public int BlobCount { get; set; } /// Total pixel area classified as chocolate inside this cell (sum of accepted contour areas). public int DetectedArea { get; set; } }