Files
HawkeyeVision/Plugins/LindtLeerformPlugin/Models/CellResult.cs
2026-04-07 14:52:20 +02:00

9 lines
180 B
C#

namespace LindtLeerformPlugin.Models;
public class CellResult
{
public int Index { get; set; }
public bool IsGood { get; set; }
public double Distance { get; set; }
}