Files
cms_thermo_active/Step.Model/ConfigModels/SoftKeyConfigModel.cs
T
Lucio Maranta 306ed6c515 User input hub comunication
Added signalR comunication -> client
Adedd new library and nhandler softkey management
2018-03-07 17:03:04 +01:00

25 lines
674 B
C#

using System.Collections.Generic;
using static Step.Utils.Constants;
namespace Step.Model.ConfigModels
{
public class SoftKeyConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> LocalizedNames { get; set; }
public int Category { get; set; }
public bool IsActive { get; set; }
public bool OperatorConfirmationNeeded { get; set; }
public List<SubKeysModel> SubKeys { get; set; }
public int PlcId { get; set; }
public SOFTKEY_TYPE Type { get; set; }
}
public class SubKeysModel
{
public int Id;
public int PlcId;
public string Text;
}
}