10 lines
325 B
C#
10 lines
325 B
C#
namespace LindtLeerformPlugin.Models;
|
||
|
||
public class CellResult
|
||
{
|
||
public int Index { get; set; }
|
||
public bool IsGood { get; set; }
|
||
/// <summary>Largest (histogram bin value − spline at that bin) across all bins. Negative if every bin is below the spline.</summary>
|
||
public double MaxExceedance { get; set; }
|
||
}
|