aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs
new file mode 100644
index 000000000..1f894d70b
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.ThreadExtensions/Excel/ThreadCharacteristicsExelModel.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.MachineStudio.ThreadExtensions.Models
+{
+ public class ThreadCharacteristicsExcelModel
+ {
+ public String ThreadName { get; set; }
+ public String Manufacturer { get; set; }
+ public String Brand { get; set; }
+ public String Country { get; set; }
+ public String EndUse { get; set; }
+ public String Applications { get; set; }
+ public String IndustrySector { get; set; }
+ public String Material { get; set; }
+ public String Type { get; set; }
+ public String SubFamily { get; set; }
+ public String Family { get; set; }
+ public String Group { get; set; }
+ public String Texturing { get; set; }
+ public String Geometry { get; set; }
+ public String Color { get; set; }
+ public String GlossLevel { get; set; }
+ public double LinearDensity { get; set; }
+ public String Unit { get; set; }
+ public int Plies { get; set; }
+ public int FilamentCountPerPlie { get; set; }
+ public int LinearDensityCount { get; set; }
+ public int CountDen { get; set; }
+ public String FiberCount  { get; set; }
+ public int Twist { get; set; }
+ public String TwistDirection { get; set; }
+ }
+}