Agrarsense
WeatherParameterMetaFloat.h
Go to the documentation of this file.
1// Copyright (c) 2023 FrostBit Software Lab at the Lapland University of Applied Sciences
2//
3// This work is licensed under the terms of the MIT license.
4// For a copy, see <https://opensource.org/licenses/MIT>.
5
6#pragma once
7
8#include "WeatherParameterMetaFloat.generated.h"
9
10USTRUCT(BlueprintType)
12{
13 GENERATED_BODY()
14
15public:
17 UPROPERTY(BlueprintReadWrite, EditAnywhere)
18 float DefaultActual = 50;
19
21 UPROPERTY(BlueprintReadWrite, EditAnywhere)
22 float MinUI = 0;
23
25 UPROPERTY(BlueprintReadWrite, EditAnywhere)
26 float MaxUI = 100;
27
29 UPROPERTY(BlueprintReadWrite, EditAnywhere)
30 float MinActual = 0;
31
33 UPROPERTY(BlueprintReadWrite, EditAnywhere)
34 float MaxActual = 100;
35};