From ca048430f9cb275b1061ca5ae95291813c51ecb9 Mon Sep 17 00:00:00 2001 From: Dan <daniel2.lorych@live.uwe.ac.uk> Date: Sun, 1 May 2022 18:51:33 +0100 Subject: [PATCH] Add class for Configuration Results --- Helios/Models/ConfiguratorResult.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Helios/Models/ConfiguratorResult.cs diff --git a/Helios/Models/ConfiguratorResult.cs b/Helios/Models/ConfiguratorResult.cs new file mode 100644 index 0000000..c94ba9b --- /dev/null +++ b/Helios/Models/ConfiguratorResult.cs @@ -0,0 +1,21 @@ +using System; +namespace Helios.Models +{ + public class ConfiguratorResult + { + public double RoofArea { get; set; } + public double RoofAngle { get; set; } + public double PanelEfficiency { get; set; } + public double InstallationCost { get; set; } + public double PowerGeneratedSummer { get; set; } + public double PowerGeneratedWinter { get; set; } + public bool GeneratesRequiredPower { get; set; } + public bool ExceedsMaximumPower { get; set; } + public bool WithinBudget { get; set; } + + public ConfiguratorResult() + { + } + } +} + -- GitLab