Aggiunta preliminare metodi x gestione M156

This commit is contained in:
Samuele Locatelli
2020-09-12 16:41:29 +02:00
parent bfc99fc826
commit 76deabb93b
10 changed files with 182 additions and 4 deletions
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Thermo.Active.Model.ConfigModels
{
public class InputOperatorConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> Messages { get; set; }
public Dictionary<byte, Dictionary<string, string>> Buttons { get; set; }
public string Type { get; set; }
}
}