Files
cms_thermo_active/Thermo.Active.Model/DTOModels/Recipe/DTORecipeParam.cs
T
2020-05-18 17:25:56 +02:00

30 lines
722 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Thermo.Active.Model.DTOModels.Recipe
{
public class DTORecipeParam
{
public int Id { get; set; } = 0;
public RPRange Range { get; set; }
public RPStatus Status { get; set; }
public string UnitMeasure { get; set; }
public double ValueAct { get; set; }
}
public struct RPRange
{
public double Min { get; set; }
public double Max { get; set; }
}
public struct RPStatus
{
public bool Visible { get; set; }
public bool Enabled { get; set; }
public bool HasError { get; set; }
}
}