Started config setup for new objects

This commit is contained in:
Samuele Locatelli
2020-06-04 15:21:15 +02:00
parent e5daf52bb4
commit 8bd8144294
8 changed files with 167 additions and 6 deletions
@@ -0,0 +1,16 @@
using System.Collections.Generic;
using static Thermo.Active.Model.Constants;
namespace Thermo.Active.Model.ConfigModels
{
public class ModBlockConfigModel
{
public int Id;
public string Label { get; set; }
public TACT_MBLOCK_TYPE Type { get; set; }
public TACT_MBLOCK_SECTION Section { get; set; }
public int IdParam{ get; set; }
public bool ShowDelay { get; set; }
public int Priority { get; set; }
}
}