36 lines
705 B
C#
36 lines
705 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 DTOModuleConfigModel
|
|
{
|
|
public int Id;
|
|
public string Label;
|
|
public BlockType Type;
|
|
public BlockSection Section;
|
|
public int IdMainParam = -1; // -1 = non visibile
|
|
public bool DelayVisible;
|
|
public int VisualPriority;
|
|
}
|
|
|
|
public enum BlockType
|
|
{
|
|
HEATING,
|
|
DRAWING,
|
|
MOVEMENT,
|
|
VACUUM,
|
|
COOLING,
|
|
EXTRACTION
|
|
}
|
|
public enum BlockSection
|
|
{
|
|
HEATING,
|
|
FORMING,
|
|
EXTRACTION
|
|
}
|
|
}
|