12 lines
430 B
C#
12 lines
430 B
C#
namespace LindtLeerformPlugin.Models;
|
|
|
|
public class LeerformRecipe
|
|
{
|
|
public string RecipeName { get; set; } = string.Empty;
|
|
public CellPattern Pattern { get; set; } = new();
|
|
public int[] HistogramBins { get; set; } = [5, 5, 5];
|
|
public float[] AverageSpline { get; set; } = [];
|
|
public Dictionary<int, float[]> CellSplines { get; set; } = new();
|
|
public string ThumbnailBase64 { get; set; } = string.Empty;
|
|
}
|