Added Softkey "Visible" attribute + AutoIncrement Versioning

This commit is contained in:
Nicola Carminati
2019-03-07 16:39:09 +01:00
parent dbc80f653e
commit 83f22592c8
18 changed files with 220 additions and 100 deletions
@@ -9,6 +9,7 @@ namespace Step.Model.ConfigModels
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; }
@@ -19,6 +20,7 @@ namespace Step.Model.ConfigModels
{
public int Id;
public int PlcId;
public bool IsActive;
public string Text;
}
}