Added unit of measure

Fix siemens axes names and added axes type
This commit is contained in:
Lucio Maranta
2018-12-14 16:28:16 +00:00
parent 10115ad59c
commit effae21fa8
6 changed files with 157 additions and 109 deletions
+7 -1
View File
@@ -159,6 +159,7 @@ namespace CMS_CORE_Library.Models
public int Id;
public string Name;
public bool IsSelectable;
public AXIS_TYPE Type;
}
public class PreviewFileModel
@@ -201,7 +202,12 @@ namespace CMS_CORE_Library.Models
WAITING_OPERATOR = 2,
CLOSING = 3
}
public enum AXIS_TYPE
{
LINEAR = 0,
ROTATING = 1
}
#endregion Data structure models
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////