Skip to content
Snippets Groups Projects
Commit ca048430 authored by Daniel Lorych's avatar Daniel Lorych :cookie:
Browse files

Add class for Configuration Results

parent 57d1593c
No related branches found
No related tags found
No related merge requests found
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()
{
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment