Added edges functions:

Read
Add
Remove
This commit is contained in:
Lucio Maranta
2018-05-02 15:53:05 +00:00
parent cb3c44c895
commit 89ef149dd8
19 changed files with 2107 additions and 367 deletions
+16 -1
View File
@@ -480,7 +480,16 @@ namespace CMS_CORE_Library
public bool ChangeTool;
public bool IsInUse;
public bool PreAlarm;
public List<Dictionary<string, double>> EdgesData;
public List<EdgesModel> EdgesData;
}
public class EdgesModel
{
public int Id;
public double ResidualLife;
public double NominalLife;
public double PreAlmLife;
public Dictionary<string, double> EdgeAdditionalParams;
}
public class ShankModel
@@ -518,6 +527,12 @@ namespace CMS_CORE_Library
public int Type;
}
public class EdgeConfigModel
{
public string Name;
public string Path;
}
#endregion ToolsConfig
}
}