From a72aad0a22c8aa7b1ddb6bd2ec67eefaef1da041 Mon Sep 17 00:00:00 2001 From: Erik Narhi Date: Mon, 1 Jun 2026 09:34:03 -0700 Subject: [PATCH] Added default thresholds values --- .../ExecuteCommands/FacadeCondensationRiskCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs b/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs index 53848c1a..8c238f80 100644 --- a/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs +++ b/LadybugTools_oM/ExecuteCommands/FacadeCondensationRiskCommand.cs @@ -36,7 +36,7 @@ public class FacadeCondensationRiskCommand : ISimulationCommand public virtual FileSettings EPWFile { get; set; } = new FileSettings(); [Description("The list of thresholds to use. If no values are provided, default values of [10,7,4,1,-2,-5] will be used.")] - public virtual List Thresholds { get; set; } = new List(); + public virtual List Thresholds { get; set; } = new List{10, 7, 4, 1, -2, -5}; [Description("Set to true to return a heatmap, or set to false to return a chart and table.")] public virtual bool Heatmap { get; set; } = true;