21 lines
642 B
C#
21 lines
642 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace TestAutomateFunction;
|
|
|
|
/// <summary>
|
|
/// This class describes the user specified variables that the function wants to work with.
|
|
/// </summary>
|
|
/// This class is used to generate a JSON Schema to ensure that the user provided values
|
|
/// are valid and match the required schema.
|
|
public struct FunctionInputs
|
|
{
|
|
// 0- Create dropdown for available climate zones as "ClimateZones"
|
|
|
|
// 1- Create toggle for whether including walls or not
|
|
|
|
// 2- Create toggle for whether including windows or not
|
|
|
|
// 3- Create toggle for whether including roofs or not
|
|
}
|