namespace CandyboxPlugin.Recipe { public class HistogramRecipeConfiguration { public int SimilarityTolerance { get; set; } = 80; public int InnerTolerance { get; set; } = 40; public int OuterTolerance { get; set; } = 40; public List IgnoreCorrelation { get; set; } = new List(); public int MemoryBuffer { get; set; } = 5; } }