families, shanks
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using static CMS_CORE_Library.DataStructures;
|
||||
|
||||
namespace Step.Model.DTOModels.ToolModels
|
||||
{
|
||||
public class DTOSiemensToolModel
|
||||
{
|
||||
[Required]
|
||||
public string FamilyName { get; set; }
|
||||
[Required]
|
||||
public int MagazinePositionType;
|
||||
[Required]
|
||||
public int ToolType;
|
||||
[Required]
|
||||
public int LeftSize;
|
||||
[Required]
|
||||
public int RightSize;
|
||||
[Required]
|
||||
public ROTATION Rotation;
|
||||
[Required]
|
||||
public bool Cooling1;
|
||||
[Required]
|
||||
public bool Cooling2;
|
||||
[Required]
|
||||
public bool IsActive;
|
||||
[Required]
|
||||
public bool FixedPlace;
|
||||
[Required]
|
||||
public bool IsInhibited;
|
||||
[Required]
|
||||
public bool IsMeasured;
|
||||
[Required]
|
||||
public bool ChangeTool;
|
||||
[Required]
|
||||
public bool IsInUse;
|
||||
[Required]
|
||||
public bool PreAlarm;
|
||||
|
||||
// public List<Dictionary<string, double>> EdgesData;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user