Global rename dei projcs e namespaces, meno 3 proj

This commit is contained in:
Samuele Locatelli
2020-04-09 13:15:01 +02:00
parent 90811d5bdb
commit f25694e0ff
1420 changed files with 20048 additions and 20045 deletions
@@ -0,0 +1,26 @@
using System.Collections.Generic;
using static Termo.Active.Model.Constants;
namespace Termo.Active.Model.ConfigModels
{
public class UserSoftKeyConfigModel
{
public int Id { get; set; }
public Dictionary<string, string> LocalizedNames { get; set; }
public int Category { get; set; }
public bool IsActive { get; set; }
public bool IsVisible { 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 bool IsActive;
public string Text;
}
}